tor-browser

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

box-decoration-break-02-ref.xhtml (513B)


      1 <html xmlns="http://www.w3.org/1999/xhtml">
      2 <head>
      3  <meta charset="utf-8" />
      4  <style>
      5    span {
      6      font: 24px sans-serif;
      7      line-height: 2;
      8      color: lime;
      9      background: lime;
     10    }
     11    br {
     12      line-height: 0;
     13    }
     14  </style>
     15 </head>
     16 <body>
     17  <h2>Box-Decoration-Break: Clone</h2>
     18  <span>The</span><br />
     19  <span>quick</span><br />
     20  <span>orange fox</span>
     21 
     22  <h2>Box-Decoration-Break: Slice</h2>
     23  <span>The</span><br />
     24  <span>quick</span><br />
     25  <span>orange fox</span>
     26 </body>
     27 </html>