I am trying to add a title to my site, but I cannot get the container to fit the width of the screen, even though the width is set to 100% or auto . It always has a border of ~ 5px both on the left and on the right, even if the margin and margins are set to 0.
HTML:
<div id="header"> <h7> <p>Lorem Ipsum</p> <p>Lorem Ipsum</p> <p>Lorem Ipsum</p> <p>Lorem Ipsum</p> </h7> </div>
CSS
body div#header{ width: 100%; margin: 0; padding: 0; background-color: #c0c0c0; }
source share