How do I get rid of the white space at the top of my page?
I have tried css resets, removing <p> tags, changing <body>
, <html>
, and <div>
margins and nothing seems to work.
<html>
<head>
<title>Title</title><meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
html, body {
margin: 0;
padding: 0;
}
#container {
background-color: black;
color: white;
width: 800px;
margin-top: 0px;
margin-bottom: 0px;
margin-left: auto;
margin-right: auto;
}
#inner-container {
margin: 10px 10px 10px 10px;
}
p {
margin-top: 0px;
}
</style>
</head>
<body><div id="container"><div id="inner-container">
<p>Body Text</p>
</div></div></body></html>