tor-browser

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

text-overflow-ellipsis-indent-001-ref.html (393B)


      1 <!DOCTYPE html>
      2 <style>
      3 div {
      4  text-overflow: ellipsis;
      5  overflow: hidden;
      6  font-size: 10px;
      7 }
      8 </style>
      9 <body>
     10  <div style="padding-left: 3ch">123456</div>
     11  <div style="padding-left: 3ch; width: 6ch">1234567</div>
     12  <div style="padding-left: 6ch;">123</div>
     13  <div style="padding-left: 6ch; width: 3ch">1234</div>
     14  <div>123456789</div>
     15  <div style="width: 9ch">1234567890</div>
     16 </body>