tor-browser

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

doc_media_queries.html (278B)


      1 <html>
      2 <head>
      3  <title>test</title>
      4  <style>
      5    div {
      6      width: 1000px;
      7      height: 100px;
      8      background-color: #f00;
      9    }
     10 
     11    @media screen and (min-width: 1px) {
     12      div {
     13        width: 200px;
     14      }
     15    }
     16  </style>
     17 </head>
     18 <body>
     19 <div></div>
     20 </body>
     21 </html>