<html>
<head>
<style>
body {
background-color:#E7E9EB;
}
#myDIV {
height:300px;
width: 100%;
background-color:#FFFFFF;
writing-mode: vertical-lr;
text-orientation: mixed;
}
</style>
</head>
<body>
<h1>The text-orientation property</h1>
<div id="myDIV">
<h3>Orient the characters!</h3>
<p>This example demonstrates different text-orientation values.<br>
Have fun!</p>
</div>
</body>
</html>