forked from emersonmellado/nodebcjan6
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfloat2.html
More file actions
executable file
·41 lines (37 loc) · 756 Bytes
/
float2.html
File metadata and controls
executable file
·41 lines (37 loc) · 756 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
<!DOCTYPE html>
<html>
<head>
<title>Learning CSS</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
}
.container {
background-color: gray;
}
.container div {
float: left;
width: 50%;
font-size: 20px;
font-weight: bold;
color: white;
text-align: center;
padding: 20px 0;
}
.container div.first {
background-color: green;
}
.container div.second {
background-color: blue;
}
</style>
</head>
<body>
<div class="container">
<div class="first">1</div>
<div class="second">2</div>
</div>
</body>
</html>