data/tip
[css] background에 배경 이미지 넣기
2015. 10. 25.
01. 메뉴나 스킨 내부에 배경 이미지 넣기
  • 메뉴나 스킨 내부에 색상 대신 이미지를 넣고 싶을 때
  • 이 태그를 사용해주세요.

background: url(이미지주소) repeat;

background: url(이미지주소) no-repeat;


ex)

#content {background: url(./images/bg.png) no-repeat;}




02. 블로그 배경 이미지 넣기

<★style>

body {background-image: url(이미지주소);

      background-repeat: no-repeat;

      background-attachment: fixed;

      background-size: cover;

      background-position: right bottom;}

table, td {background-color: transparent;} 

</★style>


* 별표(★) 삭제하고 사용하세요.

* size 에서 cover 효과는 창크기게 맞게 사진이 출력됨.