Noch nicht viel geschrieben
Ich baue gerade eine Website auf, doch ich habe immer das Problem mit dem Postionieren.
Dies ist der Code... Doch wenn ich ihn ausprobiere ist immer alles an der falschen position. Ich möchte das sich alles nach unten verschiebt außer der Header. Ist das möglich? Und wenn ja wie?
body {
background-color: #111111;
}
#login {
position:absolute;
left:0px;
top:-50px;
width:800px;
height:150px;
z-index:1;
}
#login2 {
position:bottom;
left:0px;
top:-50px;
width:800px;
height:150px;
z-index:1;
}
#player {
position:absolute;
left:400px;
top:300px;
width:450px;
height:450px;
z-index:3;
}
#creature {
position:absolute;
left:400px;
top:400px;
width:450px;
height:650px;
z-index:3;
}
#logout {
position:absolute;
left:10px;
top:10px;
width:150px;
height:150px;
z-index:3;
}
#locations {
position:absolute;
left:400px;
top:300px;
width:450px;
height:450px;
z-index:3;
}
#gold {
position:absolute;
left:200px;
top:4px;
width:150px;
height:100px;
z-index:3;
}
#lpanel {
position:absolute;
left:10px;
top:100px;
width:100px;
height:200px;
z-index:3;
}
#hpointsback {
position:absolute;
left:10px;
top:204px;
width:100px;
height:15px;
z-index:1;
}
#hpoints {
position:absolute;
left:10px;
top:204px;
width:100px;
height:15px;
z-index:2;
text-align:left;
}
#spointsback {
position:absolute;
left:10px;
top:225px;
width:100px;
height:15px;
z-index:1;
}
#spoints {
position:absolute;
left:10px;
top:225px;
width:100px;
height:15px;
z-index:2;
text-align:left;
}
#table {
position:absolute;
left:200px;
top:105px;
width:500px;
height:900px;
z-index:2;
}
#magic {
position:absolute;
left:400px;
top:100px;
width:450px;
height:450px;
z-index:3;
}
#footer {
clear:both;
background: url(images/footer.png) no-repeat;
width:957px;
height: 248px;
}
#login {
float:right;
width: 429px;
}
Dies ist der Code... Doch wenn ich ihn ausprobiere ist immer alles an der falschen position. Ich möchte das sich alles nach unten verschiebt außer der Header. Ist das möglich? Und wenn ja wie?