basti1012.bplaced.net

Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
    Hallo... Ich hab mal eine Frage! Wie kann man das hinbekommen, dass 2 Divs nebeneinander sind so wie hier: <a href="http://manuplayslp.de">http://manuplayslp.de</a> Ich habe es mit &lt;section&gt; irgendwie probiert, aber es funktioniert nicht!

    Code

                                        
                                    <style>
      #wrapper{
      display:flex;
        justify-content: center;
      font-size:60px;
    }
    
    #eins,#zwei{
      height:300px;
      width:300px;
      text-align:center;
    }
    #eins{
      background:green;
    }
    #zwei{
      background:red;
    }
    p{
      margin-top:30%;
    }
    </style>
    <div id="wrapper">
      <div id="eins"><p>Div 1</p></div>
      <div id="zwei"><p>Div 2</p></div>
    </div>