CSS 기본 튜토리얼 배경 ...LOGIN

CSS 기본 튜토리얼 배경 속성

CSS 배경 속성

  • background-color: 배경색입니다.

  • background-image: 배경 이미지 주소입니다. 예: background-image:url(images/bg.gif)

  • background-repeat: 배경 타일링 모드, 값: no-repeat(타일링 아님) , 반복-x(가로 방향), 반복-y(세로 방향)

  • background-position: 배경 위치 지정. 형식: 배경-위치: 가로 위치 지정,

  • 위치 지정: 배경 위치: 왼쪽|중앙|오른쪽 상단| |bottom;

  • 고정값 위치: background-position: 50px 50px; //배경은 컨테이너 왼쪽에서 50px, 컨테이너 상단에서 50px

  • 백분율 위치 지정 사용: 배경 위치: 50% 50%; //가로 중심, 세로 중심

  • 혼합 위치 지정 사용: 배경 위치 : 왼쪽 10px; //컨테이너 위에서 왼쪽 10px 타일링 방법 위치 지정 방법

  • 예: background:url(images/bg. gif) 반복 없음 중앙 center;

  • 예: 배경: #ccc url(images/bg.gif) 반복 없음 왼쪽 10px;
  • <!DOCTYPE HTML>
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
            <title>php.cn</title>
        <style type="text/css">
            .box1{
                background-color:#f0f0f0;
                width:400px;
            }
            .box2{
                background-image:url(http://img1.imgtn.bdimg.com/it/u=1182781053,1047826690&fm=21&gp=0.jpg);
                background-repeat:no-repeat;
                background-position:center center;
                width:400px;
                height:400px;
            }
        </style>
        </head>
        <body>
            <div class="box1">
            <h1>习近平心中的互联网</h1>
            <p>互联网是20世纪最伟大的发明,它正在将人类“一网打尽”,人们在不知不觉中已经融入了互联网生态,互联网让世界变成了“鸡犬之声相闻”的地球村。</p>
            </div>
            <div class="box2">
                
            </div>
        </body>
    </html>
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>php.cn</title> <style type="text/css"> .box1{ background-color:#f0f0f0; width:400px; } .box2{ background-image:url(http://img1.imgtn.bdimg.com/it/u=1182781053,1047826690&fm=21&gp=0.jpg); background-repeat:no-repeat; background-position:center center; width:400px; height:400px; } </style> </head> <body> <div class="box1"> <h1>习近平心中的互联网</h1> <p>互联网是20世纪最伟大的发明,它正在将人类“一网打尽”,人们在不知不觉中已经融入了互联网生态,互联网让世界变成了“鸡犬之声相闻”的地球村。</p> </div> <div class="box2"> </div> </body> </html>
코스웨어