2
<td>
中的文本未在最後<td>
上集中排隊(valign)直接針對btn-group
。td's未與btn-group組對齊
見例如:https://jsfiddle.net/rsf1f6wn/
如何解決這一問題?
<table id="myDataTable" class="table" cellspacing="0" width="100%">
<thead>
<tr>
<th>Name</th>
<th>Location</th>
<th>Orders</th>
<th></th>
</tr>
</thead>
<tbody>
<tr class="active">
<td><a href="#">FirstName Lastame</a></td>
<td>USA</td>
<td>10</td>
<td>
<div class="btn-group pull-right">
<button type="button" class="btn btn-sm">Edit</button>
<button type="button" class="btn btn-sm">Add</button>
</div>
</td>
</tr>
</tbody>
</table>