> Hi
>
> is there any way to display headings in HTML to top
> as 90 degress , reading from bottom to top
>
> renjith
>
>
>
Come again?
--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
It doesn't work for me under IE5.5.
<html>
<head>
<title>vertical.htm</title>
<style type="text/css">
thead tr th { writing-mode:tb-rl; filter:fliph() flipv() }
</style>
</head>
<body>
<table border="1" cellpadding="0" cellspacing="0" width="50">
<tr height="50">
<th>Title</th>
</tr>
<tr>
<td>One</td>
</tr>
<tr>
<td>Two</td>
</tr>
</table>
</body>
</html>
Thanks; it works.
I thought that it applied to all three: "thead", "tr", and "th".