1115916-1-vertical-metrics.html (388B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <style> 6 @font-face { 7 font-family: ahem; 8 src: url(../fonts/Ahem.ttf); 9 } 10 div { 11 height: 100px; 12 font: 16px/24px ahem; 13 } 14 #test1 { 15 writing-mode: vertical-lr; 16 text-orientation: upright; 17 } 18 span { 19 background: red; /* should not be visible */ 20 } 21 </style> 22 </head> 23 <body> 24 <div id="test1"> 25 <span>ab<br>cd</span> 26 </div> 27 </body> 28 </html>