Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Re: Heading Alignment

0 views
Skip to first unread message

Adrienne

unread,
May 23, 2005, 1:11:41 PM5/23/05
to
Gazing into my crystal ball I observed "=?Utf-8?B?UmVuaml0aA==?="
<Ren...@discussions.microsoft.com> writing in news:CCE52F1B-3934-485D-
AF0F-6E5...@microsoft.com:

> 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

McKirahan

unread,
May 26, 2005, 4:39:34 PM5/26/05
to
"Raja Ravipati" <RajaRa...@discussions.microsoft.com> wrote in message
news:A1D27846-FE4D-4EE1...@microsoft.com...
> Renjith,
>
> This is a simple IE only solution.
> Infact this solution can be applied to any element.
>
> thead tr th
> {
> writing-mode: tb-rl;
> filter:fliph() flipv(); /*draw bottom up*/
> }
>
> Regards
> Raj

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>


McKirahan

unread,
May 26, 2005, 8:38:55 PM5/26/05
to
"Raja Ravipati" <RajaRa...@discussions.microsoft.com> wrote in message
news:313C6829-CC5D-4027...@microsoft.com...
> McKirahan,
>
> Its your typo.
> You missed the thead tag.
> You can add the thead tag or change the css rule.
>
> Regards,
> Raj

Thanks; it works.

I thought that it applied to all three: "thead", "tr", and "th".


0 new messages