-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinline.html
72 lines (69 loc) · 2.55 KB
/
inline.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
<!DOCTYPE html>
<html>
<head>
<title>CSS</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="./style/reset.css" />
<link rel="stylesheet" type="text/css" href="./style/main.css" />
<link rel="stylesheet" type="text/css" href="./style/inline2.css" />
</head>
<body>
<h4 class="bold m-top20">Example 2:</h4>
<h6 class="italic m-bottom10">Without inline</h6>
<ul class="inline-lists font-size0 border bw3 bc1 clearfix">
<li>
<div class="bc-green"></div>
<div class="bc-green"></div>
<div class="bc-green"></div>
<div class="bc-green"></div>
<div class="bc-green"></div>
</li>
<li>
<div class="bc-yellow"></div>
<div class="bc-yellow"></div>
<div class="bc-yellow"></div>
<div class="bc-yellow"></div>
</li>
<li>
<div class="bc-blue"></div>
<div class="bc-blue"></div>
<div class="bc-blue"></div>
</li>
<li>
<div class="bc-red"></div>
<div class="bc-red"></div>
<div class="bc-red"></div>
<div class="bc-red"></div>
<div class="bc-red"></div>
</li>
</ul>
<h6 class="italic m-bottom10">With inline</h6>
<ul class="inline-lists with-inline font-size0 border bw3 bc1 clearfix">
<li>
<div class="bc-green"></div>
<div class="bc-green"></div>
<div class="bc-green"></div>
<div class="bc-green"></div>
<div class="bc-green"></div>
</li>
<li>
<div class="bc-yellow"></div>
<div class="bc-yellow"></div>
<div class="bc-yellow"></div>
<div class="bc-yellow"></div>
</li>
<li>
<div class="bc-blue"></div>
<div class="bc-blue"></div>
<div class="bc-blue"></div>
</li>
<li>
<div class="bc-red"></div>
<div class="bc-red"></div>
<div class="bc-red"></div>
<div class="bc-red"></div>
<div class="bc-red"></div>
</li>
</ul>
</body>
</html>