basti1012.bplaced.net

Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
    Hey, ich bin noch ganz neu in dem Thema. Ich möchte, das der eine div über dem anderen ist. Wie kann ich das machen?

    Code

                                        
                                    <style>
      *{
      margin:0;
      padding:0;
    }
    body{
      width:100%;
      border:1px solid red;
    }
    div{
      border:1px solid black;
    }
    </style>
    <body>
    <div>1</div>
    <div>2</div> 
    </body>