-
Notifications
You must be signed in to change notification settings - Fork 0
/
BoxSizing.html
44 lines (36 loc) · 965 Bytes
/
BoxSizing.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>HTML-CSS Help</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<br>
<span>Red box Width * Height - 200*200</span>
<br>
<span>Blue box Width * Height - 160*160</span>
<br>
<div class="infoContainer">
<div class="infoContent">
<div class="innerContent"></div>
</div>
</div>
<br>
<span>Blue box Width * Height - 160*160 + padding 30 px</span>
<br>
<span>Blue box <b> without box-sizing</b>, will change the size if we add padding or border</span><br>
<span></span>
<br>
<br>
<br>
<div class="infoContainer">
<div class="infoContent2">
<div class="innerContent"></div>
</div>
</div>
<span>Blue box Width * Height - 160*160 + padding 30 px</span><br>
<span>Blue box <b> with box-sizing</b>, will not change the size </span><br>
</body>
</html>