-
Notifications
You must be signed in to change notification settings - Fork 0
/
02-display.html
100 lines (85 loc) · 2.59 KB
/
02-display.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Display Prop</title>
<style>
/* CSS Priorities:
! tag selector
!! class selector
!!! id selector
!!!! style attribute
*/
html {
font-family: Arial, Helvetica, sans-serif;
}
p {
background-color: lightgray;
padding: 16px;
}
span {
background-color: darkgray;
padding: 10px;
margin: 5px;
width: 100px;
}
/* tag .class selector { } */
p.inline-block-items span {
/* display - allow us to change the type of the element */
/* inline-block: inline positioning & block properties */
display: inline-block;
}
.styled {
color: darkblue;
font-weight: bold;
}
/* ------- ID Selectors ------- */
#main-title {
text-align: center;
background-color: rgb(225, 93, 57);
color: white;
padding: 4px;
text-transform: uppercase;
}
</style>
</head>
<body>
<h1 id="main-title">Inline and Block Elements</h1>
<code>
<!DOCTYPE html>
<p><abbr title="Hello">ABB</abbr></p>
</code>
<h3>Inline Elements</h3>
<p>
<strong>Inline elements:</strong>
<span>Hi</span>
<span class="styled">Hey</span>
<span>Hello</span>
</p>
<p class="inline-block-items">
<strong>Inline-block elements:</strong>
<span>Hi</span>
<span class="styled">Hey</span>
<span>Hello</span>
</p>
<div>
<img width="150"
src="https://media.gcflearnfree.org/content/5e82363212da9215e057b928_03_30_2020/block_vs_inline_diagram.png">
<img width="150"
src="https://media.gcflearnfree.org/content/5e82363212da9215e057b928_03_30_2020/block_vs_inline_diagram.png">
</div>
<h3>Block Elements</h3>
<p>Lorem ipsum dolor sit amet.</p>
<address>Rivne, Ukraine</address>
<blockquote>To be or not to be!</blockquote>
<div>
<img width="200"
src="https://media.gcflearnfree.org/content/5e82363212da9215e057b928_03_30_2020/block_vs_inline_diagram.png">
</div>
<div>
<img width="200"
src="https://media.gcflearnfree.org/content/5e82363212da9215e057b928_03_30_2020/block_vs_inline_diagram.png">
</div>
</body>
</html>