Turn text in table about 90 degrees - problem

liunx

Guest
Hello, I have to make the table with 4 columns, but text must be turn about 90 degrees (e.g. like in Word) . I'm finding for 4 hours in css manuall but no result. Help me ? :)Rotation of text is not possible. Stack the letters (t<br>e<br>x<br>t) or use an image.Rotation of text is not possible.

Surely ? :)

Look this, I found :


<HTML><HEAD><TITLE></TITLE>
<style>.fCV {LAYOUT-FLOW: vertical-ideographic;}</style>
</HEAD><BODY>
<TABLE width="100%" border=1>
<TR>
<TD>
<TABLE width="100%" border=1 id=verti>
<TR>
<TD class=fCV>Some Vertical Text</TD>
<TD class=fCV>Some Vertical Text</TD>
<TD class=fCV>Some Vertical Text</TD>
</TR>
</TABLE>
</TD>
<TD>
<TABLE width="100%" border=1 id=horiz>
<TR><TD>Some Horizontal Text</TD></TR>
<TR><TD>Some Horizontal Text</TD></TR>
<TR><TD>Some Horizontal Text</TD></TR>
<TR><TD>Some Horizontal Text</TD></TR>
<TR><TD>Some Horizontal Text</TD></TR>
<TR><TD>Some Horizontal Text</TD></TR>
<TR><TD>Some Horizontal Text</TD></TR>
<TR><TD>Some Horizontal Text</TD></TR>
<TR><TD>Some Horizontal Text</TD></TR>
<TR><TD>Some Horizontal Text</TD></TR>
</TABLE>
</TD>
</TR>
</TABLE>
</BODY></HTML>
</BODY>
</HTML>forget previous statement
 
Back
Top