I am encountering an issue where I have a div
containing a label
, but there seems to be some unwanted space above the div
that I can't seem to remove.
It's puzzling me as to why this space is appearing.
Query: What could be causing the space above my div
? How can I eliminate it?
This is my code:
To address the display problem, I have utilized color
and border
.
* {
padding: 0;
margin: 0;
}
body {
background: green;
}
label {
border: 1px solid black;
font-size: 10px;
}
<div>
<label>Some text</label>
</div>
I have attempted multiple solutions without success.