Newer
Older
minerva / Tests / LibWeb / Layout / input / flex / specified-size-suggestion-with-box-sizing-border-box.html
@minerva minerva on 13 Jul 453 bytes Initial commit
<!doctype html><style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font: 16px MinervaSans;
    }
    body {
      width: 800px;
      display: flex;
      flex-wrap: wrap;
    }
    img {
      width: 50%;
      height: 100px;
      background: pink;
    }
    .padded {
      padding-left: 200px;
    }
</style><body><img><img class="padded" alt="hello this text is here to make the img have a wide intrinsic size" />