Forum How do I...?

logically rotate tables (in CSS)?

oliof
Let's assume I have a table like this:

aaa bbb ccc ddd
---------------
123 ... ... ...
456 ... ... ...
789 ... ... ... 


but due to formatting constraints I want to print it like this:

aaa | 123 456 789
bbb | ... ... ...
ccc | ... ... ...
ddd | ... ... ...


Is there a way to do this in CSS?
mikeday
No, tables in CSS and HTML have a fixed orientation, and would need a script or XSLT to transpose them.
oliof
Pity. Thanks.