Height of a block element without content in CSS
If there is no content in a block element, we will see a stuck border:
<div></div>
div {
width: 100px;
border: 1px solid red;
}
:
If there is no content in a block element, we will see a stuck border:
<div></div>
div {
width: 100px;
border: 1px solid red;
}
: