This repository was archived by the owner on Dec 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathtables.html
123 lines (113 loc) · 3.73 KB
/
tables.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
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Chassis - Tables</title>
<meta name="description" content="Table style examples">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../dist/css/chassis.css">
<link rel="stylesheet" href="demos.css">
<link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700,400italic,700italic" rel="stylesheet">
</head>
<body>
<h1>CSS Chassis</h1>
<hr>
<h2>Tables</h2>
<h3>Basic Table</h3>
<p>Here's a paragraph to show spacing around the table. Aenean lacinia bibendum nulla sed consectetur. Maecenas faucibus mollis interdum..</p>
<table class="table">
<thead class="table-head">
<tr class="table-row">
<th class="table-heading" scope="col">ID</th>
<th class="table-heading" scope="col">Product</th>
<th class="table-heading" scope="col">Category</th>
<th class="table-heading" scope="col">Price</th>
</tr>
</thead>
<tbody class="table-body">
<tr class="table-row">
<th class="table-heading" scope="row">1</th>
<td class="table-cell">T-Shirt</td>
<td class="table-cell">Apparel</td>
<td class="table-cell">$12.99</td>
</tr>
<tr class="table-row">
<th class="table-heading" scope="row">2</th>
<td class="table-cell">Sweat Shirt</td>
<td class="table-cell">Apparel</td>
<td class="table-cell">$24.99</td>
</tr>
<tr class="table-row">
<th class="table-heading" scope="row">3</th>
<td class="table-cell">Necklace</td>
<td class="table-cell">Accessories</td>
<td class="table-cell">$29.99</td>
</tr>
</tbody>
</table>
<h3>Div Table</h3>
<p>Here's a paragraph to show spacing around the table. Aenean lacinia bibendum nulla sed consectetur. Maecenas faucibus mollis interdum..</p>
<div class="table">
<div class="table-head">
<div class="table-row">
<div class="table-heading">ID</div>
<div class="table-heading">Product</div>
<div class="table-heading">Category</div>
<div class="table-heading">Price</div>
</div>
</div>
<div class="table-body">
<div class="table-row">
<div class="table-heading">1</div>
<div class="table-cell">T-Shirt</div>
<div class="table-cell">Apparel</div>
<div class="table-cell">$12.99</div>
</div>
<div class="table-row">
<div class="table-heading">2</div>
<div class="table-cell">Sweat Shirt</div>
<div class="table-cell">Apparel</div>
<div class="table-cell">$24.99</div>
</div>
<div class="table-row">
<div class="table-heading">3</div>
<div class="table-cell">Necklace</div>
<div class="table-cell">Accessories</div>
<div class="table-cell">$29.99</div>
</div>
</div>
</div>
<h3>Full Width Table</h3>
<p>Here's a paragraph to show spacing around the table. Aenean lacinia bibendum nulla sed consectetur. Maecenas faucibus mollis interdum..</p>
<table class="table table-full">
<thead class="table-head">
<tr class="table-row">
<th class="table-heading" scope="col">ID</th>
<th class="table-heading" scope="col">Product</th>
<th class="table-heading" scope="col">Category</th>
<th class="table-heading" scope="col">Price</th>
</tr>
</thead>
<tbody class="table-body">
<tr class="table-row">
<th class="table-heading" scope="row">1</th>
<td class="table-cell">T-Shirt</td>
<td class="table-cell">Apparel</td>
<td class="table-cell">$12.99</td>
</tr>
<tr class="table-row">
<th class="table-heading" scope="row">2</th>
<td class="table-cell">Sweat Shirt</td>
<td class="table-cell">Apparel</td>
<td class="table-cell">$24.99</td>
</tr>
<tr class="table-row">
<th class="table-heading" scope="row">3</th>
<td class="table-cell">Necklace</td>
<td class="table-cell">Accessories</td>
<td class="table-cell">$29.99</td>
</tr>
</tbody>
</table>
</body>
</html>