-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinline_float.html
55 lines (50 loc) · 2.17 KB
/
inline_float.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
<!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/inline3.css" />
<link rel="stylesheet" type="text/css" href="./style/float_responsive.css" />
</head>
<body>
<h4 class="bold m-top20 m-bottom10">Example 3.1:</h4>
<ul class="inline-lists font-size0 border bw3 bc1 clearfix">
<li>
<div class="bc-green">1</div>
<div class="bc-green">2</div>
<div class="bc-green">3</div>
<div class="bc-green">4</div>
<div class="bc-green">5</div>
</li>
<li>
<div class="bc-yellow">1</div>
<div class="bc-yellow">2</div>
<div class="bc-yellow">3</div>
<div class="bc-yellow">4</div>
</li>
<li>
<div class="bc-blue">1</div>
<div class="bc-blue">2</div>
<div class="bc-blue">3</div>
</li>
<li>
<div class="bc-red">1</div>
<div class="bc-red">2</div>
<div class="bc-red">3</div>
<div class="bc-red">4</div>
<div class="bc-red">5</div>
</li>
</ul>
<h4 class="bold m-top20 m-bottom10">Example 3.2:</h4>
<div class="inline-block w600 font-size0 border bw3 bc0 bold clearfix">
<div class="inline-block"><img src="http://placehold.it/200x100&text=INLINE-BLOCK(1)"/></div>
<div class="inline">
<div class="left"><img src="http://placehold.it/100x100&text=LEFT(2)"/></div>
<div class="right"><img src="http://placehold.it/100x100&text=RIGHT(3)"/></div>
</div>
<div class="inline-block"><img src="http://placehold.it/200x100&text=INLINE-BLOCK(4)"/></div>
</div>
</body>
</html>