How can I remove whitespace from above and below the text in the div so that the text fits neatly inside the red box.
div {
border: 2px solid red;
padding-top: 0px;
margin-top: 0px;
}
<div>LEX</div>
How can I remove whitespace from above and below the text in the div so that the text fits neatly inside the red box.
div {
border: 2px solid red;
padding-top: 0px;
margin-top: 0px;
}
<div>LEX</div>
Try fiddling with line-height and em like so:
line-height: 1em;
This way, whatever your font-size is, the line-height will adjust automagically. 1em might be too much.. perhaps .667em is a better fit?