vertical label in VB

Asked

Viewed 95 times

1

How do I make the label text look like this:

inserir a descrição da imagem aqui

Upright and bottom up. I think it’s simple but I’m not getting it.

Someone could help me?

  • Add the code of your Asp.net component or the rendered html of your page

  • I’m sorry if I didn’t get it right, but I need a code that leaves a label on Vb as the image above, I still don’t have a code that can help.

  • 2

    Here’s the solution to your problem https://www.codeproject.com/Articles/11523/Vertical-Label-Control-in-VB-NET

  • Thanks a lot for the help! I also found this one for anyone. https://stackoverflow.com/questions/38597121/how-do-i-rotate-a-label-in-vb-net

1 answer

0

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

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

Browser other questions tagged

You are not signed in. Login or sign up in order to post.