How to add a table?


The tables component is an extension of the bootstrap's table component, please visit bootstrap's official documentation page for full feature list.

<!-- Table -->
<div class="table-responsive">
	<table class="table">
		<caption>[your caption]</caption>
		<thead>
			<tr>
			    <th>[table's head]</th>
			</tr>
		</thead>
		<tbody>
			<tr>
				<th>[table's content]</th>
				<td>[table's content]</td>
			</tr>
		</tbody>
	</table>
</div>

Last update:
2015-05-15 12:24
Author:
Cristina Cavruc
Revision:
1.0
Average rating:0 (0 Votes)