label vertically in VB

1

How do I make the label text look like this:

Vertical and bottom to top. I think it's simple but I can not.

Could someone help me?

    
asked by anonymous 10.04.2018 / 20:04

1 answer

0

Good afternoon, you can use "writing-mode" in HTML (HTML5), follow the example below:

<asp:Label runat="server" ID="teste" Style="writing-mode: vertical-lr;">exemplo de texto</asp:Label>
    
12.04.2018 / 20:44