1
Ich spiele grad nen bisschen mit css rum und habe einfahc mal ein klienes sehr einfaches Layout erstellt.
http://www.freepler.de/userdaten/22548028/bilder/home.jpg
Wie kriege ich es nun hin, dass das Layout in der mitte des Fensters angezeigt wird?
Lg
Nicky
http://www.freepler.de/userdaten/22548028/bilder/home.jpg
Wie kriege ich es nun hin, dass das Layout in der mitte des Fensters angezeigt wird?
html, body {
background-color:gray;
width:800px;
margin:0px;
padding:0px;
}
#header {
background-color:rgb(190,215,235);
width:100%;
height:100px;
margin:0px;
padding:0px;
}
#navigation {
background-color:rgb(210,235,255);
left:0px;
width:180px;
margin:0px;
padding:0px;
}
#content {
position:absolute;
top:100px;
margin-top:0px;
margin-left:180px;
margin-right:180px;
}
#features {
position:absolute;
background-color:rgb(210,235,255);
top:100px;
right:0px;
width:180px;
margin:0px;
padding:0px;
}
Lg
Nicky