The label tag doesn't have the property 'width', so how should I control the width of a label tag?
|
Using CSS, of course...
The |
|||||||||||||
|
|
Inline elements (like P, SPAN, LABEL, etc.) are displayed so that their height and width are calculated by the browser based on their content. If you want to control height and width you have to change those elements' blocks.
|
||||
|
|
|
using the inline-block is better because it doesn't force the remaining elements and/or controls to be drawn in a new line
|
|||
|
|
display:blockorfloat:left. – Russell Dias May 12 '10 at 16:10