-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path4-blocks.html
More file actions
43 lines (38 loc) · 1.24 KB
/
Copy path4-blocks.html
File metadata and controls
43 lines (38 loc) · 1.24 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
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<style type="text/css">
.box { width: 100px;
height: 100px;
text-align: center;
line-height: 100px;
font-size: 40px;
font-weight: bold;
border-radius: 6px;
font-family: 'Arial';
float: left;
}
.row { overflow: hidden; }
.redBox { color: red; border: solid 3px red; }
.greenBox { color: green; border: solid 3px green; }
.blueBox { color: blue; border: solid 3px blue; }
#firstRow { margin-left: 100px; }
#secondRow { margin-left: calc((100px * 3 - 100px * 2)/2); }
</style>
</head>
<body>
<div class="row" id="firstRow">
<div class="box blueBox">A</div>
</div>
<div class="row" id="secondRow">
<div class="box redBox">B</div>
<div class="box greenBox">C</div>
</div>
<div class="row">
<div class="box blueBox">D</div>
<div class="box greenBox">E</div>
<div class="box redBox">F</div>
</div>
</body>
</html>