Skip to content
This repository was archived by the owner on Dec 11, 2021. It is now read-only.

Commit 15195fb

Browse files
committed
tables: restored after delete gh-130
1 parent cd563ea commit 15195fb

File tree

1 file changed

+76
-0
lines changed

1 file changed

+76
-0
lines changed

demos/tables.html

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,5 +111,81 @@ <h2>Tables</h2>
111111

112112
<p>Here"s a paragraph to show spacing around the table. Aenean lacinia bibendum nulla sed consectetur. Maecenas faucibus mollis interdum.</p>
113113

114+
<table class="striped-table">
115+
<thead>
116+
<tr>
117+
<th>#</th>
118+
<th>Table heading</th>
119+
<th>Table heading</th>
120+
<th>Table heading</th>
121+
</tr>
122+
</thead>
123+
<tbody>
124+
<tr>
125+
<th>1</th>
126+
<td>Table cell</td>
127+
<td>Table cell</td>
128+
<td>Table cell</td>
129+
</tr>
130+
<tr>
131+
<th>2</th>
132+
<td>Table cell</td>
133+
<td>Table cell</td>
134+
<td>Table cell</td>
135+
</tr>
136+
<tr>
137+
<th>3</th>
138+
<td>Table cell</td>
139+
<td>Table cell</td>
140+
<td>Table cell</td>
141+
</tr>
142+
</tbody>
143+
</table>
144+
145+
<p>Here"s a paragraph to show spacing around the table. Aenean lacinia bibendum nulla sed consectetur. Maecenas faucibus mollis interdum.</p>
146+
147+
<table class="">
148+
<thead>
149+
<tr>
150+
<th>#</th>
151+
<th>Table heading</th>
152+
<th>Table heading</th>
153+
<th>Table heading</th>
154+
</tr>
155+
</thead>
156+
<tbody>
157+
<tr class="success">
158+
<th>1</th>
159+
<td>Table cell</td>
160+
<td>Table cell</td>
161+
<td>Table cell</td>
162+
</tr>
163+
<tr class="active">
164+
<th>2</th>
165+
<td>Table cell</td>
166+
<td>Table cell</td>
167+
<td>Table cell</td>
168+
</tr>
169+
<tr class="danger">
170+
<th>3</th>
171+
<td>Table cell</td>
172+
<td>Table cell</td>
173+
<td>Table cell</td>
174+
</tr>
175+
<tr class="warning">
176+
<th>4</th>
177+
<td>Table cell</td>
178+
<td>Table cell</td>
179+
<td>Table cell</td>
180+
</tr>
181+
<tr class="info">
182+
<th>5</th>
183+
<td>Table cell</td>
184+
<td>Table cell</td>
185+
<td>Table cell</td>
186+
</tr>
187+
</tbody>
188+
</table>
189+
114190
</body>
115191
</html>

0 commit comments

Comments
 (0)