#. 배경 이미지 고정
<style type="text/css">
BODY {
margin-left: 1em; /* 고정 이미지가 보이도록 열어 준 것임 */
background-image: url(이미지경로/이미지파일명);
background-position: 260 left; /* 디폴트는 top left, 혹은 0 0 */
background-attachment: fixed;
background-repeat: no-repeat; /* 디폴트는 repeat */
}
</style>
+. background=position 의 값을 어떻게 주느냐에 따라 배경이미지의 위치가 달라진다.
-. 0 0 => 왼쪽 상단 , bottom 0 => 하단 왼쪽, bottom right => 하단 오른쪽....등으로 표현할 수 있다.
출처 : http://sir.co.kr/bbs/tb.php/pl_css/19
#. 배경 이미지 투명
body{
background-color:white;
color:#666;filter: Alpha(Opacity=90); /* Opacity 값 조절 */
}