-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinlineAndBlock.html
More file actions
51 lines (46 loc) · 1.26 KB
/
inlineAndBlock.html
File metadata and controls
51 lines (46 loc) · 1.26 KB
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>Inline Vs Block Elements</title>
<style>
body{
background-color: aquamarine;
}
*{
margin: 0;
padding: 0;
}
.container{
background-color: bisque;
border: 1px solid black;
margin: 10px;
padding: 10px;
}
.container p{
background-color: tomato;
padding: 5px;
border: 1px solid black;
display: inline;
}
.container span{
background-color: blueviolet;
border: 1px solid black;
padding: 5px;
margin: 10px;
display: block;
}
</style>
</head>
<body>
<div class="container">
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit.</p>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit.</p>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit.</p>
<span>Span 1</span>
<span>Span 2</span>
<span>Span 3</span>
</div>
</body>
</html>