tor-browser

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

custom-highlight-font-metrics-001-ref.html (492B)


      1 <!DOCTYPE html>
      2 <meta charset="UTF-8">
      3 <title>CSS Highlight API Test: </title>
      4 <head>
      5  <style>
      6    div {
      7      margin: 50px;
      8      font-size: 40px;
      9      text-underline-offset: 0.5em;
     10      text-decoration-line: underline;
     11      text-decoration-color: green;
     12      text-decoration-thickness: 0.25rem;
     13    }
     14    #h2 {
     15      font-size: 20px;
     16    }
     17  </style>
     18 </head>
     19 <body>
     20  <div id="h1">Font relative units with 40px font</div>
     21  <div id="h2">Font relative units with 20px font</div>
     22 </body>