tor-browser

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

grid-flex-spanning-items-001-ref.html (380B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Grid Layout Reference Case</title>
      4 <link rel="author" title="Emily McDonough" href="mailto:emcdonough@mozilla.com"/>
      5 <style>
      6 #holder {
      7    height: 50px;
      8    width: 30px;
      9    border: 10px solid fuchsia;
     10 }
     11 #item {
     12    width: 300px;
     13    height: 50px;
     14    background: aqua;
     15 }
     16 </style>
     17 <div id="holder">
     18  <div id="item"></div>
     19 </div>