-
Notifications
You must be signed in to change notification settings - Fork 0
/
inline_simple.html
31 lines (29 loc) · 1.1 KB
/
inline_simple.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
<!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/inline1.css" />
</head>
<body>
<h4 class="bold m-bottom10">Example 1:</h4>
<ul class="inline-lists inline-block">
<li class="border bw3 bc1 clearfix w400">
<div class="bc-green"></div>
<div class="bc-green"></div>
<div class="inline1000">
<div class="left">
<div class="bc-yellow"></div>
<div class="bc-yellow"></div>
</div>
<div class="inline600">
<div class="bc-blue"></div>
<div class="w200 bc-blue"></div>
</div>
</div>
</li>
</ul>
</body>
</html>