-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbox-sizing.html
51 lines (47 loc) · 1.09 KB
/
box-sizing.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- https://developer.mozilla.org/en-US/docs/Web/CSS/box-sizing -->
<style>
.box{
width:100px;
height:100px;
background-color: red;
}
.inner{
width: 100%;
height:100%;
background-color: blue;
}
.box2{
padding:20px;
box-sizing: content-box;
border: 10px solid black;
}
.box3{
padding:20px;
box-sizing: border-box;
border: 10px solid black;
}
</style>
</head>
<body>
<h3>Box without padding</h3>
<div class="box box1">
<div class="inner">
</div>
</div>
<h3>Box with padding</h3>
<div class="box box2">
<div class="inner">
</div>
</div>
<h3>Box with padding, boder-box</h3>
<div class="box box3">
<div class="inner"></div>
</div>
</body>
</html>