Hallo.
Meist verstehe ich CSS.. dieses mal nicht.
Ich habe folgenden aufbau:
Dazu gehört folgendes CSS:
Die Seite sieht auf diese Weise im IEauch aus wie sie soll (Angang 1).
Leider springt das rechte div im Firefox nach rechts... und zwar ein ganzes stück (Grafik 2).
Frage: warum?
Meist verstehe ich CSS.. dieses mal nicht.
Ich habe folgenden aufbau:
HTML:
<div id="innerContent">
<div id="contentLeft">Hier können z.B. Bilder in einer Vorschau laufen.</div>
<div id="contentRight">
<div id="textbox">
hier steht Blindtext.
</div>
</div>
</div>
</div>
Dazu gehört folgendes CSS:
Code:
#outerBorder{
width: 700px;
position: relative;
left: 50%;
margin-left: -350px;
top: 50px;
background-color: #E6E6FA;
border: 2px groove #D3D3D3;
}
#nav{
height: 100px;
text-align: center;
padding-top: 15px;
padding-left: 30px;
padding-right: 30px;
}
#innerContent{
height: 380px;
}
#contentLeft{
position: relative;
width: 200px;
height: 380px;
background-color: Black;
float: left;
overflow: scroll;
color: #E6E6FA;
}
#contentRight{
position: relative;
top: 0px;
margin-left: 200px;
width: 500px;
height: 380px;
background-color: Blue;
overflow: auto;
}
#textbox{
padding-left: 20px;
}
Die Seite sieht auf diese Weise im IEauch aus wie sie soll (Angang 1).
Leider springt das rechte div im Firefox nach rechts... und zwar ein ganzes stück (Grafik 2).
Frage: warum?