-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcss_attribute2.html
More file actions
116 lines (85 loc) · 2.38 KB
/
css_attribute2.html
File metadata and controls
116 lines (85 loc) · 2.38 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
margin :0;
padding : 0;
}
body {
padding : 50px;
}
hr{
margin: 100px 0;
}
#box1 {
width : 100px;
height : 100px;
background-color: red;
border: 10px solid #000;
padding : 20px;
padding-left:50px;
margin-top:50px;
margin-left:300px;
}
#box2 {
width : 250px;
height: 100px;
border : 5px solid #DDD;
border-radius: 50px 20px;
}
#circle {
width : 200px;
height: 200px;
border: 1px solid #DDD;
margin-bottom: 50px;
border-radius: 50%;
background-image: url(../mini1.jpg);
background-size: 100%;
}
#box3 {
background-color: blanchedalmond;
/* display: none ; */
display: inline ;
}
a {
background-color: chartreuse;
display: inline-block;
width : 300px;
height : 300px;
background-image: url(../mini1.jpg);
background-size: contain;
}
body {
background-image:
url(../mini1.jpg),
url(../mini2.jpg);
/* width height */
background-size: 200px 150px;
/* background-size: 100% 150px; */
/* background-size: 100%; */
/* background-size: cover; */
/* background-size: contain; */
background-repeat: no-repeat;
/* background-repeat: repeat-x; */
/* background-repeat: repeat-y; */
background-attachment: fixed;
background-position: bottom right;
}
</style>
</head>
<body>
<span>text s-1</span>
<div id="box3">text div</div>
<a href="#">text - a</a>
<span>text s-2</span>
<hr>
<div id="circle"></div>
<div id="box2"></div>
<div id="box1">text</div>
</body>
</html>