• 코드:
​x
 
1
<!DOCTYPE html>
2
<html lang="ko">
3
​
4
<head>
5
    <meta charset="UTF-8">
6
    <title>CSS Backgrounds</title>
7
    <style>
8
        body {
9
            background-image: url("/examples/images/img_man.png");
10
            background-repeat: repeat-x;
11
        }
12
    </style>
13
</head>
14
​
15
<body>
16
​
17
    <h1>CSS를 이용한 배경이미지 설정입니다.</h1>
18
    <p>배경이미지를 수평으로만 반복해서 보여줍니다.</p>
19
​
20
</body>
21
​
22
</html>