• 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;
    }

  • HTML:
    <html>
    <head>
    <title>Willkommen</title>
    <link rel="stylesheet" type="text/css" href="style.css" />
    </head>
    <body>
    <div id="header">
    <h1>Willkommen</h1>
    </div>
    </body>
    </html>


    CSS:
    header {
    top: 0px;
    height: 100px;

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!