tor-browser

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

grid-lanes-item-placement-008-ref.html (498B)


      1 <!DOCTYPE html>
      2 <head>
      3  <meta charset="utf-8">
      4  <title>CSS Grid Test: Grid Lanes item placement w/ Images</title>
      5  <link rel="author" title="Brandon Stewart" href="mailto:brandonstewart@apple.com">
      6  <link rel="help" href="https://drafts.csswg.org/css-grid-3">
      7 </head>
      8 
      9 <body>
     10 <style>
     11 grid {
     12  display: inline-grid;
     13  grid-template-columns: 400px;
     14 }
     15 
     16 img {
     17  width: 100%;
     18  height: auto;
     19  background-color: cyan;
     20 }
     21 </style>
     22 
     23 <grid>
     24    <img width="400" height="400" />
     25 </grid>
     26 
     27 </body>
     28 </html>