Write texts in vertical direction

Explanation

If using unique style sheets that Internet Explorer for Windows has, you can write texts in vertical direction. Specify tb-rl for writing-mode. tb-rl is short for top to bottom and right-left is short for right to left.

Sample Code [Output]

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=shift_jis">
<title>Sample</title>
<style type="text/css"><!--
p {
writing-mode:tb-rl;
}
--></style>
</head>
<body>
<h1>Sample</h1>
<p>
文章を縦書きにすることができます。<br>
ただし、ウィンドウズ版のインターネットエクスプローラーのみです。
</p>
</body>
</html>