tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

grid-block-end-ref.html (689B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <title>margin-trim: grid-block-end</title>
      5 <link rel="author" title="Sammy Gill" href="mailto:sammy.gill@apple.com">
      6 <link rel="help" href="https://drafts.csswg.org/css-box-4/#margin-trim-grid">
      7 <meta name="assert" content="block-end should trim block-end margins of items on last row">
      8 <style>
      9 grid {
     10    display: inline-grid;
     11    border: 1px solid black;
     12    grid-template-columns: auto auto;
     13 }
     14 item {
     15    display: block;
     16    background-color: green;
     17    width: 50px;
     18    height: 50px;
     19 }
     20 </style>
     21 </head>
     22 <body>
     23 <grid>
     24 <item style="grid-row: span 2; height: auto;"></item>
     25 <item style="margin-block-end: 10px;"></item>
     26 <item></item>
     27 </grid>
     28 </body>
     29 </html>