-
Notifications
You must be signed in to change notification settings - Fork 3
/
grid珊格.html
43 lines (42 loc) · 1.27 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags always come first -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="../source/bootstrap/css/bootstrap.min.css">
<style>
div {
border: 1px solid gray;
min-height: 100px;
}
</style>
</head>
<body>
<h1>Hello, world!</h1>
<div class="row">
<div class="col-md-8 col-xs-12">col-md-8 col-xs-12</div>
<div class="col-md-4 col-xs-8">col-md-4 col-xs-8</div>
</div>
<div class="">
<div class="col-md-8 col-xs-12">col-md-8 col-xs-12</div>
<div class="col-md-4 col-xs-8">col-md-4 col-xs-8</div>
</div>
<div class="first-three col-md-6 col-xs-12">
<div>我是第一名</div>
<div>我是第二名</div>
<div>我是第三名</div>
</div>
<div class="last-all col-md-4 col-xs-12">
<div>我是第四名</div>
<div>我是第五名</div>
<div>我是第六名</div>
</div>
<!-- jQuery first, then Tether, then Bootstrap JS. -->
<script src="../source/jquery-3.1.0.js"></script>
<script src="../source/bootstrap/js/tether.min.js"></script>
<script src="../source/bootstrap/js/bootstrap.min.js"></script>
</body>
</html>