-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbox.html
More file actions
33 lines (28 loc) · 678 Bytes
/
Copy pathbox.html
File metadata and controls
33 lines (28 loc) · 678 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Box Model</title>
<style>
* {
border: content-box; /* the margin can overflow margin scroll bar!! width*/
border: border-box; /* the max size is body*/
}
body {
font-size: 80px;
}
.c1 { background-color: orange; }
.c2 { background-color: pink;}
.c3 { background-color: blue;}
div {
float: left;
padding-top: 10px 50px 100px 150px;
}
</style>
</head>
<body>
<div class="c1">1</div>
<div class="c2">2</div>
<div class="c3">3</div>
</body>
</html>