bootstrap 4 table border


Home > bootstrap4


Example
<table class="table table-bordered">
	<thead>
	<tr>
		<th>ID</th>
		<th>Num</th>
	</tr>
	</thead>
	<tbody>
	<tr>
		<td>1</td>
		<td>300</td>
	</tr>
	<tr>
		<td>2</td>
		<td>400</td>
	</tr>
	</tbody>
</table>

Result:

ID Num
1 300
2 400
Try it
Powered by Githua.com