-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path11.floating_code.html
More file actions
58 lines (53 loc) · 845 Bytes
/
11.floating_code.html
File metadata and controls
58 lines (53 loc) · 845 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
<html>
<head>
<meta charset ="utf-8">
<title>
floating
</title>
<style>
.bluebox{
background-color: #3A5795;
color: white;
height: 100px;
width:auto;
float: left;
}
.yellowbox{
background-color: rgb(222, 224, 85);
height: 100px;
width: auto;
float: right;
}
.greenbox{
background-color: #31af37;
height: 100px;
width: auto;
clear: both;
}
.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>