Bootstrap 4 table


Home > bootstrap4


Example
<table class="table">
	<thead>
	<tr>
		<th>ID</th>
		<th>Num</th>
	</tr>
	</thead>
	<tbody>
	<tr>
		<td>1</td>
		<td>100</td>
	</tr>
	<tr>
		<td>2</td>
		<td>200</td>
	</tr>
	</tbody>
</table>

Result:

ID Num
1 100
2 200
Try it
Powered by Githua.com