hm: IE(6) - Mal wieder IrgendEin Problem ...

Beitrag lesen

Kann leider kein Online-Beispiel zur Verfügung stellen, aber hier das minimal-Problem-Beispiel:
-----
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang="de" xmlns="http://www.w3.org/1999/xhtml" xml:lang="de">
<head>
 <style type="text/css">
#container {
 background: #000;
 left: 25px;
 margin: 50px auto 25px auto;
 max-width: 55em;
 min-width: 20em;
 position: relative;
 width: 80%;
}

#seite {
 background: #fff;
 border: 1px solid #000;
 left: -25px;
 position: relative;
 top: -25px;
}

div#links {
 background: #ddd;
 float: left;
}

.seitenansprache-rechts {
 background: #f88;
 float: right;
 max-width: 33%;
}
 </style>
</head>

<body>

<!-- CONTAINER -->
<div id="container">

<!-- SEITE -->
<div id="seite">

<!-- LINKS -->
<div id="links">
Links gefloateter div<br />
Links gefloateter div<br />
Links gefloateter div<br />
Links gefloateter div<br />
Links gefloateter div<br />
</div>
<!-- LINKS -->

<!-- INHALT -->
<div id="inhalt">
<h1>Inhalt</h1>
<p>Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt</p>
<p class="seitenansprache-rechts">seitenansprache-rechts: rechts-gefloateter, 25% breiter Absatz</p>
<p>Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt</p>
</div>
<!-- INHALT -->

</div>
<!-- SEITE -->

</div>
<!-- CONTAINER -->

</body>
</html>
-----

Im Opera, Firefox, Konqueror soweit kein Problem (außer nach einem seitenanspruch kommt kein bzw. zu wenig Text, dann steht der seitenansrpuch außerhalb von #seite).
Im IE(6) aber ist nur der Inhalt wie erwartet zu sehen und #seite hat einen "Schatten". Die gefloateten Bereiche verschwinden jedoch im schwarzen container und sind nicht wirklich sichtbar.

Gruß