-
Notifications
You must be signed in to change notification settings - Fork 0
/
bagroundRep.html
65 lines (65 loc) · 1.7 KB
/
bagroundRep.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body{
font-family: Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
background-color: blanchedalmond;
}
.container{
max-width: 800px;
margin: 50px auto;
text-align: center;
}
.box{
width: 200px;
height: 200px;
margin: 20px;
padding: 20px;
color: white;
font-size: 18px;
border: 2px solid #ccc;
display: inline-block;
background-size: 50px 50px;
}
.repeate-bg{
background-image:url(images.jpeg);
/* background-repeat: ; */
}
.repeate-x-bg{
background-image:url(images.jpeg);
background-repeat:repeat-x;
}
.repeate-y-bg{
background-image:url(images.jpeg);
background-repeat: repeat-y;
}
.no-repeate-bg{
background-image:url(images.jpeg);
background-repeat: no-repeat;
}
</style>
</head>
<body>
<div class="container">
<h1>bg repeate example</h1>
<div class="box repeate-bg">
<p>this is repeate bg</p>
</div>
<div class="box repeate-x-bg">
<p>this is repeate bg</p>
</div>
<div class="box repeate-y-bg">
<p>this is repeate bg</p>
</div>
<div class="box no-repeate-bg">
<p>this is repeate bg</p>
</div>
</div>
</body>
</html>