display-contents-writing-mode-2-ref.html (429B)
1 <!DOCTYPE html> 2 <!-- 3 Any copyright is dedicated to the Public Domain. 4 http://creativecommons.org/publicdomain/zero/1.0/ 5 --> 6 <html> 7 <head><meta charset="UTF-8"> 8 <title>Reference: display:contents with orthogonal writing-mode</title> 9 <style type="text/css"> 10 11 span { 12 display: inline-block; 13 writing-mode: vertical-lr; 14 width: 0; 15 border: 1px solid; 16 } 17 18 </style> 19 </head> 20 <body> 21 <span>a b c</span> 22 </body> 23 </html>