카테고리 글 목록: HTML

항상 하단에 고정되어있는 DIV Element…

/*CSS Section*/
#bottom{position:fixed; left:0; bottom:0; z-index:2; width:100%; }
#bottom .btmContent{
position:relative;
text-align:center;
}
/* IE6 Fixed Position Jitter Fix */
* html, * html body {background-image:url(about:blank);background-attachment:fixed;}
/* IE6 position fixed Bottom */
* html #bottom {position:absolute;bottom:auto;top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight));}

/*HTML Section*/

컨텐츠 내용

위와 같이 하면 bottom Element는 항상 바닥에 붙어있게 된다…ㅎ