So all I have is a single line of text with a background color in red. Margin and padding are set to 0. Theres no children causing indentures as far as I know but I still get a gap all around my container.
My CSS
{
width: auto;
height: 100%;
margin:0px;
padding:0px;
background-color: rgb(207, 30, 30);
}
My HTML
<div class="main-container">
TEST
</div>
Please someone tell me what I'm doing wrong with something so simple