Its like few days pass and again when I try to recall what I read about line-height
is something misleading what I am seeing
<span>Color me</span>
span {
line-height: 52px;
background: red;
font-size: 14px;
}
Why it does not color complete box (i.e complete line-height
)?
But When I do the same with div
it colors as required.
<div>Color me</div>
div {
line-height: 52px;
background: red;
font-size: 14px;
}