Some questions about Label

  • Thread starter Thread starter David
  • Start date Start date
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.
 
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
 
Back
Top