15. 배경관련스타일
.NET프로그래밍/CSS 2.0 2009. 7. 28. 11:59 |<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>배경관련스타일</title>
</head>
<body>
<span style="background-color:Yellow;">배경</span><br />
<textarea cols="40" rows="10"
style="
background-color:Silver;
background-image:url('http://dotnetkorea.com/images/redplus_banner1.gif');
background-repeat:no-repeat;
background-position:right bottom;
background-attachment:fixed;
"></textarea>
</body>
</html>
<!--
- 상대경로 지정시 : url('./images/moon.jpg');
- 절대경로 지정시 : url('http://www.dotnetkorea.com/images/redplus.gif');
- background-repeat : repeat(반복), no-repeat(하나만 보여주기), repeat-x(가로로 반복),
repeat-y(세로로 반복)
- background-position : 원하는 위치 설정
- background-attachment : scroll(스크롤링) / fixed(스크롤 움직여도 고정)
-->
< 실행결과 >
'.NET프로그래밍 > CSS 2.0' 카테고리의 다른 글
17. 링크관련스타일 (0) | 2009.07.28 |
---|---|
16. 커서관련스타일 (0) | 2009.07.28 |
14. 외곽선(테두리) (0) | 2009.07.28 |
13. 여백관련스타일 (0) | 2009.07.28 |
12. 텍스트관련스타일 (0) | 2009.07.28 |