How can I control the width of a label tag?

ziiweb picture ziiweb · May 12, 2010 · Viewed 267k times · Source

The label tag doesn't have the property 'width', so how should I control the width of a label tag?

Answer

Josh Stodola picture Josh Stodola · May 12, 2010

Using CSS, of course...

label { display: block; width: 100px; }

The width attribute is deprecated, and CSS should always be used to control these kinds of presentational styles.