How can I control the width of a label tag?

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.

Leave a Comment