tor-browser

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

vertical-decorations-4-ref.html (466B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <style>
      6 div {
      7  font: 25px monospace;
      8  white-space: pre;
      9  overflow: hidden;
     10  text-overflow: ellipsis;
     11  border: 1px solid gray;
     12  padding: 5px;
     13  display: inline-block;
     14  vertical-align: top;
     15 }
     16 span {
     17  text-decoration: overline;
     18 }
     19 .vrl {
     20  writing-mode: vertical-rl;
     21  text-orientation: upright;
     22  height: 6em;
     23 }
     24 </style>
     25 </head>
     26 
     27 <body>
     28 <div class="vrl"><span>你好吗?我</span></div>
     29 </body>
     30 </html>