I want to remove the space between texts and div inside. There's a picture of what I mean under space between text and div.
That space is really annoying. There is the style sheet and html:
div {
display: inline-flex;
line-height: 1;
border: 2px solid rgb(204, 33, 33);
}
p {
margin-inline: 10px;
font-size: 30px;
border: 2px solid rgb(204, 33, 33);
}
<div>
<p>text</p>
<p>text</p>
</div>
``` a ```margin-top``` and ```margin-bottom``` of 0. I'm not sure which look you're trying to achieve.
– Brandon Aug 17 '21 at 14:10