-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmargin.html
More file actions
46 lines (37 loc) · 777 Bytes
/
margin.html
File metadata and controls
46 lines (37 loc) · 777 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Margin</title>
<style>
body {
margin: 0;
font-size: 40px;
}
div {
border: solid 5px #222;
}
.m30 {
margin: 30px;
}
.mb30 {
margin-bottom: 30px;
}
.mt30 {
margin-top: 30px;
}
/*
float: left / right
position: absolute
display: inline-block
*/
</style>
</head>
<body>
<div class="m30">Conteúdo 1</div>
<div class="m30" style="border: none"></div>
<div class="m30">Conteúdo 2</div>
<div class="mb30">Conteúdo 3</div>
<div class="mt30">Conteúdo 4</div>
</body>
</html>