tor-browser

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

grid-gap-decorations-021.html (980B)


      1 <!DOCTYPE html>
      2 <title>
      3    CSS Gap Decorations: row-rule-style outset should paint as groove.
      4 </title>
      5 <link rel="help" href="https://drafts.csswg.org/css-gaps-1/">
      6 <link rel="match" href="grid-gap-decorations-021-ref.html">
      7 <link rel="author" title="Javier Contreras" href="mailto:javiercon@microsoft.com">
      8 <style>
      9    body {
     10        margin: 0px;
     11    }
     12 
     13    .grid-container {
     14        height: 110px;
     15        width: 110px;
     16 
     17        display: grid;
     18        grid-template-columns: repeat(2, 1fr);
     19 
     20        column-gap: 10px;
     21        row-gap: 10px;
     22 
     23        column-rule-color: pink;
     24        column-rule-style: dotted;
     25        column-rule-width: 10px;
     26 
     27        row-rule-color: green;
     28        row-rule-style: outset;
     29        row-rule-width: 10px;
     30    }
     31 
     32    .grid-item {
     33        background: skyblue;
     34    }
     35 </style>
     36 <div class="grid-container">
     37    <div class="grid-item"></div>
     38    <div class="grid-item"></div>
     39    <div class="grid-item"></div>
     40    <div class="grid-item"></div>
     41 </div>