How to get vertical column headers

How to get vertical column headers

jeff_porterjeff_porter Posts: 4Questions: 0Answers: 0
edited July 2011 in General
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

Replies

  • fbasfbas Posts: 1,094Questions: 4Answers: 0
    edited August 2011
    I don't think that's very supported across browsers.

    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
This discussion has been closed.