Chrome会截断表格宽度的小数部分(例如从250.5px到250px)
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<style>
table {
width: 100%
}
</style>
<div class="wraper container-fluid">
<div class="row">
<div class="col-md-3">
<table>
<thead>
<tr>
<th>名称</th>
</tr>
</thead>
<tbody>
<tr>
<td>
测试
</td>
</tr>
</tbody>
</table>
</div>
<div class="col-md-9">
</div>
</div>
</div>