Hi leute wie kann ich den header ganz nach oben machen also ohne das oben so ein abstand ist
HTML
Spoiler anzeigen
<html>
<head>
<title>Willkommen</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<header>
<h1>Willkommen</h1>
</header>
</body>
</html>
CSS
Spoiler anzeigen
body {
background-color: orange;
width: 1001px;
font-family: Comic Sans MS;
font-size: 15pt;
text-align: center;
}
header {
top: 0;
height: 100px;
background-color: blue;
padding-top:auto;
border-radius: 0px;
border-bottom-style: solid;
border-left-style: solid;
border-right-style: solid;
}