-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmargin_padding_06.html
More file actions
61 lines (52 loc) · 1.56 KB
/
margin_padding_06.html
File metadata and controls
61 lines (52 loc) · 1.56 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
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Margin & Padding</title>
<style>
/* "*" selects all" */
* {
margin: 0;
padding: 0;
}
.section{
background-color: seashell;
border: tan 4px solid;
/* Padding to all sides */
padding-top: 5px;
padding-right: 10px;
padding-bottom: 5px;
padding-left: 15px;
/* Padding: t r b l */
padding: 15px 25px 15px 15px;
/* Padding : top/bottom left/right */
padding: 20px 15px;
/* Padding allsides */
padding: 30px;
/* Margin All Sides */
margin: 15px;
/* margin diff sides */
margin-top: 5px;
margin-right: 10px;
margin-bottom: 10px;
margin-left: 20px;
/* margin: t r b l */
margin: 5px 10px 15px 20px;
/* margin: top/bot left/right */
margin: 30px 20px;
}
</style>
</head>
<body>
<div class="section">
<h2>Software Engineering for the Win!</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Commodi, autem!</p>
</div>
<div class="section">
<h2>Cyber Security</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Cum, provident.</p>
</div>
</body>
</html>