-
Notifications
You must be signed in to change notification settings - Fork 31
/
box.html
117 lines (101 loc) · 2.49 KB
/
box.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!doctype html>
<html lang="is">
<head>
<meta charset="utf-8">
<title>Box model</title>
<style>
html, body {
font-size: 15px;
}
.outer-box {
background: #669;
border: 1px solid blue;
padding: 10px;
width: 200px;
}
/* viljum box sem fyllir upp í foreldri sitt en hefur samt pláss */
.outer-box .inner-box {
background: #fff;
width: 100%; /* = 200px þar sem parent er 200px */
height: 100px;
padding: 20px 30px;
border: 2px solid #000;
/* heildarstærð á boxi er þá:
width: 200px + 2*30px + 2*2px = 264px
height: 100px + 2*20px + 2*2px = 144px
*/
}
.border-box {
margin-top: 100px;
}
/*
ef við skilgreinum sem border-box er efnið aðlagað
þ.a. padding og border eru með í útreikingi á víddum
*/
.border-box * {
box-sizing: border-box;
}
/*
Með border-box getum við auðveldlega búið til box sem geta
komist fyrir og fyllt upp í foreldri sitt
*/
.fluid-box > .outer-box {
width: 100%;
min-width: 200px;
max-width: 500px;
}
/*
.max-box stýrir breidd á heildinni, í þessu tilfelli max 800px
.outer-box fyllir alltaf útí allt plássið sem það fær
*/
.max-box {
max-width: 800px;
}
.max-box > .outer-box {
width: 100%;
}
/*
.relative-box er hlutfallslega 25 föld stærð á grunnletri (25rem)
Í okkar tilfelli er það 15 (grunnletur stærð) * 25 = 375px
*/
.relative-box > .outer-box {
width: 25rem;
}
</style>
</head>
<body>
<div class="outer-box">
<div class="inner-box">
Efni í boxi sem flæðir yfir
</div>
</div>
<div class="border-box">
<div class="outer-box">
<div class="inner-box">
Efni í boxi sem passar
</div>
</div>
</div>
<div class="fluid-box border-box">
<div class="outer-box">
<div class="inner-box">
Efni í boxi sem flæðir innan ytra box
</div>
</div>
</div>
<div class="max-box border-box">
<div class="outer-box">
<div class="inner-box">
Efni í boxi sem er aldrei breiðara en 800px
</div>
</div>
</div>
<div class="relative-box border-box">
<div class="outer-box">
<div class="inner-box">
Efni í boxi sem er hlutfallslega breitt
</div>
</div>
</div>
</body>
</html>