vote up 0 vote down star

Does anyone know how to create an asp .net label control that is orientated in 90 degrees clockwise

Right now the way I do it is using
tag like this

<td style="font-size: 13px; width: 20px; 
           text-align: center; vertical-align: bottom;">
    <asp:Label ID="lbl1" runat="server" Text="日" /><br />
    <asp:Label ID="lbl2" runat="server" Text="本" /><br />
    ・<br />
    <asp:Label ID="lbl3" runat="server" Text="学" /><br />
    <asp:Label ID="lbl4" runat="server" Text="校" />
</td>

Is there a way to do this in just one Label? Like using a orientation property?

<asp:Label ID="lbl1" runat="server" Text="日本・学校" orientation="90degress" />
flag

76% accept rate

1 Answer

vote up 1 vote down check

layout-flow : vertical-ideographic

link|flag
1  
style="...; ...; layout-flow: vertical-ideographic;" – Windows programmer Sep 25 at 9:00
This seems to only work on IE. It does not work for latest firefox and chrome. Any other tweeks suggestion to make this cross browser? – Nassign Sep 26 at 4:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.