HTML CSS

html/css) background 배경 관련 주요 속성

조충희 2025. 6. 3. 10:33

background-color: 배경색
background-image: 배경이미지
background-repeat: 배경이미지의 반복 설정
background-position: 배경 이미지 위치 설정
background-size: 배경 이미지 크기 설정
background-attachment: 배경 이미지 스크롤 동작 설정

 

예제)

<body>
    <div class="box">
    <h2>배경이미지 예제</h2>
    <p>배경이미지가 중앙에 위치하며 반복되지 않습니다</p>
    </div>
</body>

 

box 클래스 스타일 정의

        .box{
            width: 100%;
            height: 500px;
            background-color: darkmagenta;
            background-image: url('https://picsum.photos/400/300');
            /* 배경이미지 반복 방지 */
            background-repeat: no-repeat;
            /* 상하 좌우 */
            background-position: center center;
        }

 

결과