I have a div which position is fixed, within that i have a div with position absolute….
There is absolute positioned div is working….. But position:fixed is not working in ie……..
Hope you understand…
HTML
<div class="container">
<div class="cont_left">
<div style="position:relative">
<div id="nav">
<div style="display: block;" class="menu"> <a href="#">
about
</a>
</div>
<div style="display: block;" class="menu"> <a href="#">
services
</a>
</div>
......
</div>
</div></div></div>
CSS
.container{
width:100%;
float:left;
}
.cont_left{
width:164px;
float:left;
padding:0;
position:fixed;
}
#nav{
width:164px;
float:left;
padding:0;
list-style:none;
margin:58px 0 46px 0;
position:absolute;
top:0;
left:0;
}
you could try this: http://ryanfait.com/position-fixed-ie6/