Hallo,
ich habe zurzeit Probleme mit CSS...und zwar habe ich einen Wrapper und dort alle divs eingefügt...der Header sollte aber eig. weiter unten gehen...funk. leider nicht...mit margin top aufjedenfall nicht...könnt ihr mir helfen?
Ziel: Der HEADER sollte runter von ca. 15px gehen funk. leider nicht
CSS:
PHP
body
{
background-color:lightyellow;
text-align:center;
}
#header
{
margin-left:15px;
width:1090;
height:125px;
background:orange;
}
#webseite
{
background-image:url("CPN.png");
background-color:black;
width:1120px;
height:825px;
margin:0 auto;
}
#main
{
margin-top:100px;
width:1120px;
}
#left {
float:left;
width:200px;
height:300px;
background:yellow;
margin-top:10px;
margin-bottom:10px;
}
#right{
float:right;
width:770px;
height:300px;
background:darkred;
margin-top:10px;
margin-bottom:10px;
}
Alles anzeigen
HTML: