• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Div Probleme mit IE6

serienjunky

Neues Mitglied
Guten Abend,

Ich sitze gerade vor einem Problem. Kann mir einer sagen, weshalb der IE 6 dies nicht richtig Darstellen kann?

Hallo zusammen, kann mir einer sagen, wieso der IE 6 dies Test http://serienjunky.se.funpic.de/nicht richtig anzeigen kann?

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="de">

<head>

<style type="text/css">
*{ 
padding: 0; margin: 0;
}

#container{
position:relative;
width: 180px;
margin:7px;
background-color:yellow;
}

.box{
position:absolute;
top:7px;
right:7px;
bottom:7px;
left:7px;
background-color:red;
}

.inhalt{
padding:5px;
color:black;

width:120px;
}

</style>
</head>


<body>
<div id="container">
    <div class="box"></div>
    
    <div class="inhalt">
    
        <br/>
        <br/>
        <br/>
        <br/>
        <br/>
    
    </div>
</div>
</body>
 
Zurück
Oben