tor-browser

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

zoom-pseudo-image.html (755B)


      1 <!doctype html>
      2 <meta charset=utf-8>
      3 <link rel="help" href="https://drafts.csswg.org/css-viewport/#zoom-property">
      4 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1979533">
      5 <link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
      6 <link rel="author" href="https://mozilla.org" title="Mozilla">
      7 <link rel="match" href="zoom-pseudo-image-ref.html">
      8 <style>
      9 .icon {
     10  width: 200px;
     11  height: 200px;
     12  background-color: blue;
     13  margin-right: 5px;
     14  display: inline-block;
     15  vertical-align: top;
     16 }
     17 
     18 .icon::before {
     19  display: block;
     20  content: url(/images/green.png);
     21  width: 100px;
     22  height: 100px;
     23  background-color: purple;
     24 }
     25 
     26 .zoom {
     27  zoom: 2;
     28 }
     29 </style>
     30 <div class="icon"></div>
     31 <div class="icon zoom"></div>