-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss_grid.html
executable file
·58 lines (55 loc) · 1.37 KB
/
css_grid.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
<title>栅格化布局</title>
<style type="text/css">
/* 栅格化布局 */
.grid { margin-right:8px; float: left; display: inline;}
.grid-6{ width:232px; }
.grid-8{ width:312px; }
.grid-9{ width:352px; }
.grid-12{ width:472px; }
.grid-16{ width:632px; }
.grid-18{ width:712px; }
.grid-24{ width:952px; }
.grid.grid-fixed {margin-right:0;}
/* End 栅格化布局 */
.wrap {
width: 952px;
margin: 0 auto;
}
div div { margin-top: 8px; height:145px;}
div div div { background:#CCC; height:145px; margin-top:0; }
</style>
</head>
<body>
<div class="wrap">
<div>
<div class="grid-6 grid"></div>
<div class="grid-6 grid"></div>
<div class="grid-6 grid"></div>
<div class="grid-6 grid grid-fixed"></div>
</div>
<div>
<div class="grid-6 grid"></div>
<div class="grid-6 grid"></div>
<div class="grid-12 grid grid-fixed"></div>
</div>
<div>
<div class="grid-8 grid"></div>
<div class="grid-8 grid"></div>
<div class="grid-8 grid grid-fixed"></div>
</div>
<div>
<div class="grid-12 grid"></div>
<div class="grid-12 grid grid-fixed"></div>
</div>
<div>
<div class="grid-16 grid"></div>
<div class="grid-8 grid grid-fixed"></div>
</div>
</div>
</body>
</html>