본문
배경이미지 고정
<style type="text/css">
body {background:#FFFFFF url(webtiti.gif) no-repeat fixed right bottom}
</style>
= webtiti인 배경이미지를 반복시키지 않고 고정, 오른쪽 아래쪽에 위치함. 그외 bg는 흰색
================================================================================================
body에 넣기
<body bgproperties="fixed">
================================================================================================
<style>
body { background-image:url('주소');
background-attachment: fixed;
background-repeat: repeat;
background-position: center; }
</style>
background-attachment
페이지를 스크롤했을 때 배경이미지도 같이 스크롤 되느냐 아니면 내용만 스크롤되는냐를 지정해주는 속성.
(fixed : 배경이미지 고정, scroll : 배경이미지 스크롤)
background-position
배경이미지의 위치를 지정.
(left : 왼쪽, right : 오른쪽, center : 가운데, top : 위쪽, bottom : 아래쪽)
background-repeat
배경이미지 패턴 속성.
(repeat : 일반반복, repeat-x : 가로방향으로만 반복, repeat-y : 세로방향으로만 반복, no-repeat : 반복하지 않음(1번))
출처 : http://www.aircon1004.com/data/bbs/board.php?bo_table=pds1&wr_id=222
관련링크
댓글목록
등록된 댓글이 없습니다.