tor-browser

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

at-custom-media-basic.html (526B)


      1 <!doctype html>
      2 <title>Basic custom media query</title>
      3 <link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
      4 <link rel="author" href="https://mozilla.com" title="Mozilla">
      5 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=2004653">
      6 <link rel="help" href="https://drafts.csswg.org/mediaqueries-5/#custom-mq">
      7 <link rel="match" href="/css/reference/green.html">
      8 <style>
      9 @custom-media --foo (width > 0px);
     10 @media (--foo) {
     11  :root {
     12    background: green;
     13  }
     14 }
     15 </style>
     16 <div></div>