Some questions about Label

D

David

Hello.

I have a Label control on my web form and I have long text in it.
What I want is to disable text wrapping of this Label.
Is it possible?

Also I want to know how can I set text alignment to right in Label?

Thank you.
 
E

Eliyahu Goldin

Label renders as a <span>. CSS rule word-wrap is applicable to <span>.
Attach to your label a style with word-wrap:normal into.

For the text alignment use style rule text-align: right.

Eliyahu
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top