-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (63 loc) · 1.66 KB
/
index.html
File metadata and controls
63 lines (63 loc) · 1.66 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>响应式网格(栅格化)布局</title>
<link rel="stylesheet" href="./style.css">
<style>
* {
margin: 0 auto;
}
.row p {
height: 50px;
line-height: 50px;
background-color: #eee;
border: 1px solid #999;
text-align: center;
}
</style>
</head>
<body>
<div class="grid-container">
<div class="row">
<div class="col-md-4 col-sm-6">
<p>hashcoding</p>
</div>
<div class="col-md-4 col-sm-6">
<p>hashcoding</p>
</div>
<div class="col-md-4 col-sm-12">
<p>hashcoding</p>
</div>
</div>
<div class="row">
<div class="col-md-3 col-sm-3">
<p>hashcoding</p>
</div>
<div class="col-md-6 col-sm-6">
<p>hashcoding</p>
</div>
<div class="col-md-3 col-sm-3">
<p>hashcoding</p>
</div>
</div>
<div class="row">
<div class="col-md-1 col-sm-2">
<p>hashcoding</p>
</div>
<div class="col-md-1 col-sm-2">
<p>hashcoding</p>
</div>
<div class="col-md-2 col-sm-8">
<p>hashcoding</p>
</div>
<div class="col-md-2 col-sm-3">
<p>hashcoding</p>
</div>
<div class="col-md-6 col-sm-3">
<p>hashcoding</p>
</div>
</div>
</div>
</body>
</html>