<style><!--BODY {
margin : 0;
background : white url(배경이미지.gif);
background-attachment : fixed;
background-position : 100% 100%;
background-repeat : no-repeat;
}--></style>
white : 배경색상
배경이미지.gif : 배경으로 쓰일 이미지 파일명
fixed : fixed로 하면 항상고정, nofixed로 하면 유동.
100% 100% : 배경이미지의 위치를 지정 (조절가능)
no-repeat : no-repeat는 이미지가 반복되지 않는것./ repeat는 반복되는 것
margin : 0;
background : white url(배경이미지.gif);
background-attachment : fixed;
background-position : 100% 100%;
background-repeat : no-repeat;
}--></style>
white : 배경색상
배경이미지.gif : 배경으로 쓰일 이미지 파일명
fixed : fixed로 하면 항상고정, nofixed로 하면 유동.
100% 100% : 배경이미지의 위치를 지정 (조절가능)
no-repeat : no-repeat는 이미지가 반복되지 않는것./ repeat는 반복되는 것
댓글