@import 'https://fonts.googleapis.com/css?family=PT+Sans';
* {
font-family: 'PT Sans', sans-serif;
}
#headerpanel {
display: block;
background-color: red;
width: 100%;
margin: 0px;
padding 0px;
border: 0px;
}
<title>Test Site</title>
<body>
<div id="headerpanel">
TEST
</div>
</body>
My objective is to design a "header" that spans from the far left to the far right of the website, positioned around 20px from the top.
https://i.sstatic.net/bldqn.png
However, upon testing, I noticed a small space in the top-left corner... How can I eliminate it?