Brauche hilfe zu meinem script

  • Ich hänge wirklich fest...

    Wieso will ich eine colorierte box erzeugen aber es klappt nicht?


    html:

    <html>

    <head>

    <meta charset="utf-8">

    <title> my website </title>

    <link href="style.css" type="text/css" rel="stylesheet">

    </head>


    <body>

    <div class="box"></div>


    <img src="33.png" style="width: 300px; heigth: 200px; float: left; padding-left: 100px; padding-top: 50px">

    <img src="myg.png" style="width: 700px; heigth:200px; float: left; border: 1px solid red; padding-top: 150px;">

    </body>

    </html>

    css:

    body {

    background: url('background.jpg') repeat-y;

    }

    box {

    width: 100px;

    height: 100px;

    float: right;

    background-color: 3F2C28;

    }

  • Wenn du im CSS das Div mit der Klasse 'box' ansprechen willst, dann muss du auch im CSS einen Punkt (.) vor dem Klassennamen setzen!

    Code
    .box {
    
    }

    if(!sleep)

    {$sheep++;}