CSS fixed container in IE6
Posted
by Moak
on Stack Overflow
See other posts from Stack Overflow
or by Moak
Published on 2010-05-15T11:22:40Z
Indexed on
2010/05/15
11:24 UTC
Read the original article
Hit count: 347
#fixed {
border:1px solid red;
height:100px;
left:50%;
margin-left:-500px;
position:fixed;
top:0;
width:1000px;
}
how can i make this element display the same way in IE6? the div is the first element directly in the body regards
© Stack Overflow or respective owner