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