-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 971 Bytes
/
index.html
File metadata and controls
31 lines (30 loc) · 971 Bytes
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>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="./css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" media="screen" href="./css/bootstrap-table.css" />
<script src="./js/jquery.min.js"></script>
<script src="https://cdn.bootcss.com/twitter-bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="./js/bootstrap-table.js"></script>
<script src="./js/main.js"></script>
<style>
.fixed-table-header{
overflow: visible
}
th{
position:relative
}
</style>
</head>
<body>
<div class="col-md-offset-3 col-md-6" style="margin-top:10%">
<h3>改造后 > <a href="after.html">原版</a></h3>
<table class="bootstrapTable table table-striped">
</table>
</div>
</body>
</html>