Newer
Older
minerva / Tests / LibWeb / Layout / input / grid / restart-fr-algorithm-if-less-than-base-size.html
@minerva minerva on 13 Jul 371 bytes Initial commit
<!DOCTYPE html>
<style>
  * {
    outline: 1px solid black;
  }
  html {
    background: white;
  }
  body {
    background: pink;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 200px;
  }
  .nowrap {
    background: orange;
    white-space: nowrap;
  }
</style>
<body><div></div><div class="nowrap">HelloFriendsHelloFriends</div><div></div></body>