tor-browser

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

content-white-space-001-ref.html (470B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Reference</title>
      4 <style>
      5    div {
      6        border: solid green;
      7        width: 25em;
      8    }
      9    #test {
     10    	border: solid blue;
     11    }
     12 </style>
     13 <body>
     14    <p>Test passes if the text in the green box and the blue box have the same spacing between words and the lines wrap at the same point.</p>
     15    <div>This text<br />should be on two lines.</div>
     16    <div id="test">This text<br />should be on two lines.</div>
     17 </body>