LIKE U

배경 이미지 고정 본문

data/htmlcss

배경 이미지 고정

mellow D_ 2015. 7. 1. 15:31

<style>

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

      background-repeat: repeat; / 배경이미지반복. 반복을 원하지 않을 경우 no-repeat

      background-attachment: fixed;

      background-position: right bottom; / 배경 기준 위치

      }

</style>



<head></head> 사이에,

또는 <style></style> 을 지우시고 css에 사용해주세요.


굵게 표시한 부분은 그대로 두시고 나머지는 원하시는대로 변경하시면 됩니다.

추가 설명된 부분은 지우고 사용해주세요.


Comments