Another problem with IE6.. It's my code:
HTML:
<div class="a">
<div class="b">
<div class="c">
<span style="display:block; background:yellow; height: 170px; width:100%;"></span>
<div class="d">
Hello World! </div>
</div>
</div>
</div>
CSS:
.a{
background: black;
float: right;
height: 200px;
margin: 0 2px;
width: 200px;
}
.b{
padding: 15px 10px;
}
.c{
position: relative;
}
.d{
background-color: green;
bottom: 0;
color: white;
opacity: 0.85;
position: absolute;
left: 0;
width: 100%;
zoom: 1;
}
.e{
font-weight: bold;
padding: 7px;
}
Check it in modern browsers and IE6. You see something like that:
How to fix it?