tor-browser

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

mq-frame-100px.html (236B)


      1 <!DOCTYPE html>
      2 <style>
      3 :root {
      4  print-color-adjust: exact;
      5 }
      6 body {
      7  margin: 0;
      8 }
      9 div {
     10  background: red;
     11 }
     12 @media (width: 100px) and (height: 100px) {
     13  div {
     14    background: green;
     15  }
     16 }
     17 </style>
     18 <div style="height:100px;"></div>