[css] 배경이미지를 스타일 시트로
페이지 정보
본문
스타일 시트를 이용해서 배경이미지를 삽입합니다
배경이 반복되지 않게 하려면 아래와 같이 소스를 삽입합니다
<head>
<style type="text/css">
<!--
body {
background-image: url(img/main_back2.jpg); <!-- 배경이미지 주소 -->
background-repeat: repeat-x; <!-- 배경 반복설정 -->
}
-->
</style>
<style type="text/css">
<!--
body {
background-image: url(img/main_back2.jpg); <!-- 배경이미지 주소 -->
background-repeat: repeat-x; <!-- 배경 반복설정 -->
}
-->
</style>
</head>
background-repeat: repeat-x;
요부분에 x를 y로 바꾼다면 y축으로 즉 세로로만 반복됩니다
x,y축 모두 반복 없이 하려면
background-repeat: no-repeat;
추천0
댓글목록
등록된 댓글이 없습니다.