How to get vertical column headers
How to get vertical column headers
jeff_porter
Posts: 4Questions: 0Answers: 0
Hi,
I've tried setting my CSS to have the value..
writing-mode: vertical-lr;
but I still can't work out how to get the col headers to have vertical text, not horizontal.
any ideas?
Thanks
Jeff Porter
I've tried setting my CSS to have the value..
writing-mode: vertical-lr;
but I still can't work out how to get the col headers to have vertical text, not horizontal.
any ideas?
Thanks
Jeff Porter
This discussion has been closed.
Replies
you can try this
[code]
.rotate90 {
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
[/code]
but test it before relying on it across many platforms. I'm sure it will only work on the latest browsers.
tested successfully on chrome 12, ff 5, ie 8