tor-browser

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

css-flexbox-row-ref.html (734B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4    <meta charset="utf-8" />
      5    <title>CSS Reftest Reference</title>
      6    <link rel="author" title="Tsutomu ogaoga Ogasawara" href="mailto:info@ogaoga.org">
      7 
      8    <style>
      9        .item {
     10            width: 15px;
     11            height: 45px;
     12            float: left;
     13        }
     14    </style>
     15 </head>
     16 
     17 <p>Pass condition: 4 rectangles, with colors in clockwise order starting from top-left: grey, orange, blue, yellow.
     18 
     19 <div style="height: 90px; width: 30px; border: 2px solid black;">
     20    <div class="item" style="background: grey"></div>
     21    <div class="item" style="background: orange"></div>
     22    <div class="item" style="background: yellow"></div>
     23    <div class="item" style="background: blue"></div>
     24 </div>