I have a form with a wrapping <label>
element, but the space between the <label>
's two lines is too big and I can't seem to adjust the line-height of the <label>
.
Here is an example of a <label>
and a <p>
, both with the same CSS applied. As you can see, the <p>
adjusts correctly, while the <label>
remains unchanged.
CODE:
form label,
form p
{
font-weight:bold;
line-height:.7em;
}
<form style="width:200px;">
<fieldset>
<label for="textarea">In ten or fewer words, explain American history</label>
<p>In ten or fewer words, explain American history</p>
<textarea name="textarea" rows="5" ></textarea>
</fieldset>
</form>
I think what's Marcio is trying to say is that in
inline
elements (likespan
s orlabel
s), which can reside one after another in the text, you can't specify attributes that apply to the whole paragraph.The obvious one is
text-align
: the paragraph should specify the align and not the individualspan
s. So asline-height
and such.The opposite to the
inline
elements are theblock
elements likediv
orp
which occupy a square on a page and are laid out between each other on a higher block-level. This behavior is controlled with the CSS attributedisplay
with which can makediv
behave just likespan
and vice versa.All the HTML tags are classified in categories that describe their nature. This classification can be related to semantics, behavior, interaction and many other aspects.
Both
p
andlabel
tags are classified in "flow content" tags category. But there is one slight difference between then: thelabel
tag is also classified in a category called "phrasing content".What do all this mean in practice? The browser default rendering will follow the specified tag classifications and will treat the
p
tag as a block element, while thelabel
tag will, by default, be treated as an in-line element. You can modify this by overwriting the default CSS rule: just tell the browser that you want yourlabel
to be rendered like a block element.You need to do that because elements that are in-line (display:inline) can't have properties like
height
,line-height
,margin-top
,margin-bottom
(they will be ignored).If you want an inline element to have a height property but still keep it with it's inline behavior (without cause a LINE BREAK), you can declare it as:
It's always good to take a read at HTML 's documentation. Here is a nice graph showing the categories, it can save you a lot of time, specially when dealing with these small quirks.
Not entirely sure why, but it will work if you set
display: block;
on the label