data/tip
01. 메뉴나 스킨 내부에 배경 이미지 넣기메뉴나 스킨 내부에 색상 대신 이미지를 넣고 싶을 때이 태그를 사용해주세요.background: url(이미지주소) repeat; background: url(이미지주소) no-repeat; ex) #content {background: url(./images/bg.png) no-repeat;} 02. 블로그 배경 이미지 넣기 body {background-image: url(이미지주소); background-repeat: no-repeat; background-attachment: fixed; background-size: cover; background-position: right bottom;} table, td {background-color: trans..
data/tip
text-decoration : underline; 텍스트에 밑줄 긋기 text-decoration : overline; 윗줄 긋기 text-decoration: overline underline;텍스트에 윗줄 아래줄 긋기 text-decoration: line-through; 텍스트에 취소선 넣기
data/tip
* HTML * CSS /* 검색창 */.searchform{width:110px;height:35px;}.searchform input {width:90px;height:25px;border:0px;background:#fff;}.searchform input:focus {outline:0;background:#fff;}