tor-browser

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

grid-gap-decorations-012.html (1102B)


      1 <!DOCTYPE html>
      2 <title>
      3  CSS Gap Decorations:  An outset of 5px extends decorations slightly beyond the edges of adjacent items.
      4 </title>
      5 <link rel="help" href="https://drafts.csswg.org/css-gaps-1/">
      6 <link rel="match" href="grid-gap-decorations-012-ref.html">
      7 <link rel="author" title="Sam Davis Omekara Jr." href="mailto:samomekarajr@microsoft.com">
      8 <style>
      9  .grid-container {
     10    display: grid;
     11    grid-gap: 10px;
     12    grid-template-columns: 100px 100px 100px;
     13    height: 320px;
     14 
     15    column-rule-color: blue;
     16    column-rule-style: solid;
     17    column-rule-width: 5px;
     18 
     19    row-rule-color: red;
     20    row-rule-style: solid;
     21    row-rule-width: 5px;
     22 
     23    column-rule-inset: -5px;
     24    column-rule-break: intersection;
     25  }
     26 
     27  .item {
     28    background: gray;
     29    opacity: 0.5;
     30  }
     31 </style>
     32 
     33 <body>
     34  <div class="grid-container">
     35    <div class="item"></div>
     36    <div class="item"></div>
     37    <div class="item"></div>
     38    <div class="item"></div>
     39    <div class="item"></div>
     40    <div class="item"></div>
     41    <div class="item"></div>
     42    <div class="item"></div>
     43    <div class="item"></div>
     44  </div>
     45 </body>