-
Notifications
You must be signed in to change notification settings - Fork 189
/
test-grid.html
81 lines (73 loc) · 2.16 KB
/
test-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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<!-- <link rel="stylesheet/less" type="text/css" href="bootstrap/less/bootstrap.less">
<script src="less.min.js" type="text/javascript"></script>
-->
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.css">
<!--[if lte IE 6]>
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap-ie6.css">
<![endif]-->
<!--[if lte IE 7]>
<link rel="stylesheet" type="text/css" href="bootstrap/css/ie.css">
<![endif]-->
<style type="text/css">
.span1,
.span2,
.span3,
.span4,
.span5,
.span6,
.span7,
.span8,
.span9,
.span10,
.span11,
.span12 {
line-height: 40px;
text-align: center;
background-color: #ddd;
}
.show-grid {
margin-top: 10px;
margin-bottom: 20px;
}
</style>
</head>
<body style="padding:50px 10px;">
<div class="bs-docs-grid">
<div class="row show-grid">
<div class="span1" data-original-title="" title="">1</div>
<div class="span1" data-original-title="" title="">1</div>
<div class="span1">1</div>
<div class="span1">1</div>
<div class="span1">1</div>
<div class="span1">1</div>
<div class="span1">1</div>
<div class="span1">1</div>
<div class="span1">1</div>
</div>
<div class="row show-grid">
<div class="span2" data-original-title="" title="">2</div>
<div class="span3">3</div>
<div class="span4">4</div>
</div>
<div class="row show-grid">
<div class="span4" data-original-title="" title="">4</div>
<div class="span5">5</div>
</div>
<div class="row show-grid">
<div class="span9" data-original-title="" title="">9</div>
</div>
</div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<!-- <script type="text/javascript" src="js/jquery-1.7.2.min.js"></script> -->
<script type="text/javascript" src="bootstrap/js/bootstrap.js"></script>
<!--[if lte IE 6]>
<script type="text/javascript" src="js/bootstrap-ie.js"></script>
<![endif]-->
<script type="text/javascript">
</script>
</body>
</html>