Danke, der float-Befehl und danach positionieren von rechts hat gut funktioniert.
Habe auch den body auf 100% gesetzt. Leider weis ich nicht wie man html auf 100% setzt.
Ein Problem steht im Moment noch. Ich habe Scrollbalken obwohl ich die Seite nicht ueberschreite (ist ja immer auf 100%), und der Scrollbetrag scheint den Balken zu entsprechen.
Kann man auf o.g. Web-Site sehen.
Ich habe zwischendurch mal probiert die Festlegung der Groessen mit 100%-100px zu programmieren. Scheint manchmal zu funktionieren, ist aber bestimmt nicht korrekt?
[CODE] body { background:white;
color:rgb(16, 31, 138);
background-attachemant:fixed;
background-repeat:no-repeat;
font-family: Arial;
font-size: 12pt;
width:100%;
height:100%;
}
p { font-family:Arial; font-size:12pt;
}
h1 { font-family:Arial;
font-size:12pt;
color: rgb(16, 31, 138);
}
A: { text-decoration:none;
}
A:link { color:powderblue;
}
A:active { color:skyblue;
}
A:visited { color:indigo;
}
A:hover { color:skyblue;
}
div.navili {position: absolute;
top:0px;
left:0px;
height:100%;
width:140px;
background-repeat:repeat-y;
background-attachement:fixed;
background-image:url(bilder/bgin.gif);
}
div.navire {position: absolute;
float:left;
top:0px;
right:0px;
height:100%;
width:140px;
background-repeat:repeat-y;
background-attachement:fixed;
background-image:url(bilder/bgwe.gif);
}
div.kopf {position: absolute;
top:0px;
left:0px;
height:140px;
width:100%;
background-repeat:repeat-x;
background-attachement:fixed;
background-image:url(bilder/bgko.gif);
}
div.logo {position: absolute;
float:left;
top:0px;
right:0px;
height:140px;
width:auto;
}
div.button {position: absolute;
top:15px;
left:650px;
height:15px;
width:315px;
}
div.land {position: absolute;
top:0px;
left:0px;
height:140px;
width:auto;
}
div.navi {position: absolute;
top:140px;
left:0px;
height:30px;
width:100%;
background-repeat:repeat-x;
background-attachement:fixed;
background-image:url(bilder/bgnv.gif);
}
div.eckl {position: absolute;
top:0px;
left:0px;
height:30px;
width:140px;
}
div.eckr {position: absolute;
float:left;
top:0px;
right:0px;
height:30px;
width:140px;
}
div.inhalt {position: absolute;
top:170px;
left:140px;
height:auto;
width:70%;
}[/CODE]