Newer
Older
minerva / Tests / LibWeb / Layout / input / inline-block-treat-100pct-width-as-auto.html
@minerva minerva on 13 Jul 473 bytes Initial commit
<!DOCTYPE html><html><head><style>
      * {
        border: 1px solid black !important;
      }
      .outer {
        float: left;
        background: pink;
      }
      .first {
        display: inline-block;
        width: 100%;
        background: orange;
      }
      .second {
        width: 50px;
        height: 50px;
        background: magenta;
      }
    </style>
</head><body><div class="outer"><div class="first">programming</div><div class="second"></div>