-
Notifications
You must be signed in to change notification settings - Fork 0
/
spacing_dimensions.html
92 lines (86 loc) · 1.83 KB
/
spacing_dimensions.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
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<title>your page title goes here</title>
<meta charset="utf-8"/>
<style>
img {
width: 100%;
max-width: 800px;
min-width: 500px;
display: block;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<img src="https://d3jtzah944tvom.cloudfront.net/lesson_2/exercises_dimension_and_spacing/H%C3%B4tel_des_Invalides_-_20150801_16h09_%2810630%29.jpg"
alt="Demonstration of image sizing" />
</body>
</html> -->
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<title>your page title goes here</title>
<meta charset="utf-8"/>
<style>
div {
width: 300px;
height: 300px;
box-sizing: border-box;
display: inline-block;
}
.red {
background-color: #fcc;
padding: 20px;
margin-right: 20px
}
.blue {
background-color: #ccf;
border: 5px solid black;
}
</style>
</head>
<body>
<div class="red"></div>
<div class="blue"></div>
</body>
</html> -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>your page title goes here</title>
<meta charset="utf-8"/>
<style>
body {
margin: 50px;
}
ul {
background-color: #a7ceff;
border: 10px solid blue;
list-style: none;
padding: 0;
}
li {
display: inline-block;
background-color: #ffc;
border: 10px solid red;
box-sizing: border-box;
line-height: 120px;
min-height: 120px;
text-align: center;
width: 23%;
margin: 0 1%
}
</style>
</head>
<body>
<ul>
<li>Item 1</li><!--
--><li>Item 2</li><!--
--><li>Item 3</li><!--
--><li>Item 4</li>
</ul>
</body>
</html>