зеркало из https://github.com/mozilla/gecko-dev.git
20 строки
339 B
HTML
20 строки
339 B
HTML
<!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>
|