-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path12.positioning_code.html
More file actions
69 lines (64 loc) · 1008 Bytes
/
12.positioning_code.html
File metadata and controls
69 lines (64 loc) · 1008 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset ="utf-8">
<title>
positioning
</title>
<style>
.bluebox{
background-color: #3A5795;
color: white;
height: 100px;
width:auto;
position: fixed;
top: 22px;
left: 22px;
/* z-index: 1;
*/
}
.yellowbox{
background-color: rgb(222, 224, 85);
height: 100px;
width: auto;
position: relative;
top: 20px;
left: 20px;
/* z-index: 0;
*/
}
.greenbox{
background-color: #31af37;
height: 100px;
width: auto;
position: absolute;
top: 40px;
left: 40px;
}
.great{
background-color: #5a3479;
}
</style>
</head>
<body>
<div class="bluebox">
<p>
Facebook is
<span class="great">
great
</span>
.
</p>
</div>
<div class="yellowbox">
<p>
Apple.
</p>
</div>
<div class="greenbox">
<p>
Microsoft.
</p>
</div>
</body>
</html>