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..