Bootstrap Table
by wenyi
HTML
<link rel="stylesheet" href="https://rawgit.com/wenzhixin/bootstrap-table/master/src/bootstrap-table.css">
<script src="https://rawgit.com/wenzhixin/bootstrap-table/master/src/bootstrap-table.js"></script>
<div class="row">
<div class="col-md-2">
<table data-toggle="table">
<thead>
<tr>
<th
colspan="2"
class="text-center">Basic Info</th>
</tr>
</thead>
<tr>
<td bgcolor="#90EE90">This</td>
<td>That</td>
</tr>
</table>
</div>
<div class="col-md-3">
<table
data-toggle="table">
<thead>
<tr>
<th>Bookmark 2</th>
</tr>
</thead>
<tbody>
<tr><td>1</td></tr>
</tbody>
</table>
</div>
<div class="col-md-3">
<table
data-toggle="table"
>
<thead>
<tr>
<th>Bookmark 3</th>
</tr>
</thead>
</table>
</div>
<div class="col-md-3">
<table
data-toggle="table">
<thead>
<tr>
<th>Bookmark 4</th>
</tr>
</thead>
</table>
</div>
</div>