날짜별 글 목록: 2014년 4월 16일

항상 하단에 고정되어있는 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는 항상 바닥에 붙어있게 된다…ㅎ

구글 웹폰트 적용….

@import url(“http://fonts.googleapis.com/earlyaccess/nanumgothic.css”);
@import url(“http://fonts.googleapis.com/earlyaccess/nanumbrushscript.css”);
@import url(“http://fonts.googleapis.com/earlyaccess/nanumgothiccoding.css”);
@import url(“http://fonts.googleapis.com/earlyaccess/nanummyeongjo.css”);
@import url(“http://fonts.googleapis.com/earlyaccess/nanumpenscript.css”);

차례로 나눔 고딕, 나눔 브러시 스크립트, 나눔 고딕 코딩, 나눔 명조, 나눔 펜 스크립트…

font-family:”Nanum Gothic”;
font-family:”Nanum Brush Script”;
font-family:”Nanum Gothic Coding”;
font-family:”Nanum Myeongjo”;
font-family:”Nanum Per Script”;

와 같이 적용하면 된다..