tor-browser

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

gradient-infinity-001-ref.html (491B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="CGQAQ" href="mailto:m.jason.liu@gmail.com">
      3 <link rel="author" title="一丝" href="mailto:yiorsi@gmail.com">
      4 <title>All the boxes below should have the lime background.</title>
      5 <style>
      6 .box {
      7  display: flex;
      8  flex-wrap: wrap;
      9  gap: 10px;
     10 }
     11 .box > div {
     12  width: 100px;
     13  height: 100px;
     14  border: solid 1px black;
     15  background-color: lime;
     16 }
     17 
     18 </style>
     19 <div class="box">
     20  <div></div>
     21  <div></div>
     22  <div></div>
     23  <div></div>
     24  <div></div>
     25 </div>