servo/tests/ref/vertical-lr-blocks.html
2014-09-08 20:21:42 -06:00

18 lines
311 B
HTML

<!doctype html>
<html>
<head>
<style>
html { writing-mode: vertical-rl }
body { margin: 10px }
div { border: blue solid 5px; line-height: 30px; height: 500px }
p { background: green; margin: 40px 20px }
p + p { margin-top: 60px }
</style>
</head>
<body>
<div>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
</body>
</html>