Web(웹) Study/HTML & CSS
IE6 에서 CSS만으로(핵안쓰고) position:fixed 하기
알 수 없는 사용자
2008. 1. 11. 13:06
검색을 하다가 알아낸(http://www.cssplay.co.uk/layouts/fixed.html) 방법인데, 아주 간단합니다.
하면 됩니다. ㅎㅎ
body{
height:100%;
overflow-y:auto;
}
/* Fixed 할 Element */
.fixed_div{
position:absolute;
}
height:100%;
overflow-y:auto;
}
/* Fixed 할 Element */
.fixed_div{
position:absolute;
}
하면 됩니다. ㅎㅎ