묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
div 사용시 (꼭부탁 드려요!!)
2007.10.19 12:22
div에 배경 지정하는 방법은 어떤게 있나요??
자세한 명령어와 부탁 드립니다 ㅠㅠ
꼭좀 부탁 합니다!!
자세한 명령어와 부탁 드립니다 ㅠㅠ
꼭좀 부탁 합니다!!
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>테스트 문서</title>
<style type="text/css">
<!--
.bg {
background-image: url(http://image.hanmail.net/hanmail/top/06_static/tab_bg.gif);
background-repeat: repeat;
height: 200px;
width: 500px;
border: 1px solid #CCCCCC;
}
.no_bg {
height: 200px;
width: 500px;
margin-top: 10px;
border: 1px solid #CCCCCC;
}
-->
</style>
</head>
<div class="bg">
여기는 배경이 있는 DIV<br />
배경이 반복됩니다.<br />
background-repeat: repeat; 에서 repeat는 배경반복 repeat-x 는 x방향반복..등등
</div>
<div class="no_bg">여기는 배경이 없는 DIV</div>
</body>
</html>
윗 소스를 html 파일로 저장하고 보세요.