.Net Project/CSS 2.0

15장 배경 관련 스타일

래곤 2009. 7. 28. 15:25
반응형

g
Element
배경색이나 무늬를 지정할 있다.

nbackground-color : 이름 / RGB
nbackground-image : url(“URL”) / none
nbackground-repeat : repeat / repeat-x / repeat-y / no-repeat
nbackground-position : top / bottom / left / right / center
nbackground-attachment : fixed / scroll



<!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>15.배경관련스타일</title>
</head>

<body>
 <!--배경색 Yellow로 잡아준다 -->
 <span style="background-color:Yellow;"></span><br /> 
    <textarea id="TextArea1" cols="25" rows="28"
      style="
                background-color:Yellow;
                background-image:url('./images/태연.jpg');
각각의 repeat-x, position:top, attachment:scroll 의 속성을 각각 설정
                background-repeat:repeat-x;
                background-position:top bottom;
                background-attachment:scroll;

                "
    </textarea>
</body>
</html>

반응형