-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyles.html
46 lines (44 loc) · 1.17 KB
/
styles.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
<!DOCTYPE html>
<html>
<head>
<title>Styles</title>
<style>
body { color: #08f }
p { color: #abbccc; font-size: 8px }
.green {
color: #0f0;
font-family: Courier;
}
.title {
font-size: 20px;
font-weight: bold;
}
#test-1 { font-weight: bold }
</style>
</head>
<body style="font-family: 'Times-Roman';">
<div class="title">CSS rules</div>
<div>a div</div>
<div style="color: #888">
<div id="test-1">div with id</div>
<div class="green">div with class</div>
</div>
<div>another div</div>
<p>a p</p>
<div class="title">Padding and margin</div>
<div style="padding-left: 20px; padding-top: 20px; padding-bottom: 20px">
padding top, bottom and left (outer)
<div style="padding-left: 20px; padding-top: 20px; padding-bottom: 20px">
padding top, bottom and left (inner)
</div>
</div>
<div>Some content</div>
<div style="margin-left: 20px; margin-top: 20px; margin-bottom: 20px">
margin top, bottom and left (outer)
<div style="margin-left: 20px; margin-top: 20px; margin-bottom: 20px">
margin top, bottom and left (inner)
</div>
</div>
<div>Some content</div>
</body>
</html>