tor-browser

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

moz-range-progress-1-ref.html (507B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>Test ::-moz-range-progress</title>
      5    <style>
      6 
      7 div {
      8  margin: 0;
      9  padding: 0;
     10 }
     11 
     12 .range {
     13  display: inline-block;
     14  position: relative;
     15  width: 200px;
     16  height: 20px;
     17  background-color: blue;
     18 }
     19 
     20 .range-progress {
     21  display: inline-block;
     22  position: absolute;
     23  top: 5px;
     24  width: 50px;
     25  height: 10px;
     26  background-color: lime;
     27 }
     28 
     29    </style>
     30  </head>
     31  <body>
     32    <div class="range">
     33      <div class="range-progress"></div>
     34    </div>
     35  </body>
     36 </html>