This repository was archived by the owner on Mar 5, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtableTest.html
More file actions
143 lines (137 loc) · 4.1 KB
/
Copy pathtableTest.html
File metadata and controls
143 lines (137 loc) · 4.1 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<html>
<head>
<style>
.header {
width: 100%;
}
.header .table {
table-layout: fixed;
}
.leftColumn {
width: 20%;
float: left;
}
.rightColumn {
float: left;
width: 80%;
}
@media screen and (max-width: 767px) {
.table-responsive {
width: 79%;
margin-bottom: 15px;
overflow-x: auto;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
border: 1px solid #ddd;
float: left;
}
.table-responsive > .table {
margin-bottom: 0;
}
.table-responsive > .table > thead > tr > th,
.table-responsive > .table > tbody > tr > th,
.table-responsive > .table > tfoot > tr > th,
.table-responsive > .table > thead > tr > td,
.table-responsive > .table > tbody > tr > td,
.table-responsive > .table > tfoot > tr > td {
white-space: nowrap;
}
.table-responsive > .table-bordered {
border: 0;
}
.table-responsive > .table-bordered > thead > tr > th:first-child,
.table-responsive > .table-bordered > tbody > tr > th:first-child,
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
.table-responsive > .table-bordered > thead > tr > td:first-child,
.table-responsive > .table-bordered > tbody > tr > td:first-child,
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
border-left: 0;
}
.table-responsive > .table-bordered > thead > tr > th:last-child,
.table-responsive > .table-bordered > tbody > tr > th:last-child,
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
.table-responsive > .table-bordered > thead > tr > td:last-child,
.table-responsive > .table-bordered > tbody > tr > td:last-child,
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
border-right: 0;
}
.table-responsive > .table-bordered > tbody > tr:last-child > th,
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
.table-responsive > .table-bordered > tbody > tr:last-child > td,
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
border-bottom: 0;
}
}
</style>
</head>
<body>
<div class="header">
<table class="table">
<thead>
<tr>
<th> EC Section Officers </th>
<th> Section A</th>
<th> Section B</th>
<th> Section C</th>
</tr>
</thead>
</table>
</div>
<div class="nextRow">
<div class="leftColumn">
<table class="table">
<tbody>
<tr><td>President</td></tr>
<tr><td>Co-President</td></tr>
<tr><td>Treasurer and a longer title!</td></tr>
</tbody>
</table>
</div>
<div class="rightColumn table-responsive">
<table class="table">
<tbody>
<tr>
<td>Gregory Lull</td>
<td>Linda Li</td>
<td>Henry David Makaveli the 4th</td>
<td>Gregory Lull</td>
<td>Linda Li</td>
<td>Henry David Makaveli the 4th</td>
<td>Gregory Lull</td>
<td>Linda Li</td>
<td>Henry David Makaveli the 4th</td>
</tr>
<tr>
<td>Gregory Lull</td>
<td>Linda Li</td>
<td>Henry David Makaveli the 4th</td>
<td>Gregory Lull</td>
<td>Linda Li</td>
<td>Henry David Makaveli the 4th</td>
<td>Gregory Lull</td>
<td>Linda Li</td>
<td>Henry David Makaveli the 4th</td>
</tr>
<tr>
<td>Gregory Lull</td>
<td>Linda Li</td>
<td>Henry David Makaveli the 4th</td>
<td>Gregory Lull</td>
<td>Linda Li</td>
<td>Henry David Makaveli the 4th</td>
<td>Gregory Lull</td>
<td>Linda Li</td>
<td>Henry David Makaveli the 4th</td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
<script src="library/jquery.js"></script>
<link rel="stylesheet" href="library/css/bootstrap.css"></link>
<link rel="stylesheet" href="library/css/bootstrap-theme.css"></link>
<script src="library/js/bootstrap.js"></script>
<script src="js/tableTest.js"></script>
</html>