Hallo AnalphaBestie,
Du schreibst in deinem Stylesheet:
#content {
position: absolute;
top: 100px;
left: 150px;
right: 10px;
border: 1px solid #CD853F;
}
Mit left:.. _und_ right:.. is der MSIE natürlich mal wieder überfordert.
aber mit dieser alternative funktionierts in IE Opera und Moz.
#content {
margin-top:100px;
margin-right:10px;
margin-left:150px;
border:1px solid #CD853F;
}
was sich noch optimieren lässt zu
#content {
margin:100px 10px 0px 150px;
border:1px solid #CD853F;
}
Grüße aus Nürnberg,
HarryS