Issue
The label tag doesn't have the property 'width', so how should I control the width of a label tag?
Solution
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.
Answered By - Josh Stodola
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.