tor-browser

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

negative-letter-spacing-1.html (351B)


      1 <!DOCTYPE html>
      2 <html>
      3 <meta charset=utf-8>
      4 <head>
      5  <style>
      6    div {
      7      /* This letter-spacing value only impacts a single space character. */
      8      letter-spacing: -60px;
      9      float: left;
     10      border: 1px solid black;
     11    }
     12    span {
     13      letter-spacing: 0;
     14    }
     15  </style>
     16 </head>
     17 <body>
     18  <div><span>same</span> <span>line?</span></div>