Web(웹) Study/HTML & CSS
IE6에서 position:fixed 구현하기
알 수 없는 사용자
2008. 10. 24. 11:11
IE6에서도 동일한 디자인을 만들기 위해 알아두어야 하는것.*{
margin:0;
height:0;
}
html{
_overflow:hidden;
}
body{
_height:100%;
_width:100%
_overflow:auto;
}
#fixed{
_position:absolute;
_z-index:-1;
}
주의사항 - position:absolute는 무조건 fixed (absolute 사용불가) , z-index 설정에 따라 가로스크롤을 가리거나 링크,드래그 사용 불가.