1234701-1.html (339B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <style> 6 7 #a { display: inline-block; height: 30px; } 8 #b { float: left; writing-mode: vertical-lr; border-top-style: solid; } 9 #c { float: left; height: 28px; } 10 11 </style> 12 </head> 13 <body onload="a.appendChild(b)"> 14 15 <div id="a"></div> 16 <div id="b"><span id="c"></span></div> 17 18 </body> 19 </html>