CSS 를 사용 하여 떠 다 니 는 탐색 표시 줄 을 고정 합 니 다.

569 단어 htmlcss
1.CSS 스타일
body {
background-image:url(text.txt); /* for IE6 */
background-attachment:fixed;
}
#bottomNav {
z-index:999;
position:fixed;
bottom:0;	/*            */
left:0;
width:100%;
_position:absolute; /* for IE6 */
_top: expression(documentElement.scrollTop + documentElement.clientHeight-this.offsetHeight); /* for IE6 */
overflow:visible;
}

 
2.html 부분
<div id="bottomNav">     O(∩_∩)O~</div>

좋은 웹페이지 즐겨찾기