我試圖做一個引導表顯示一些數據行,其中之一包括兩個按鈕。使表td不重疊
問題是,當屏幕調整爲較小的尺寸時,按鈕彼此重疊,我希望將表中的每個TD放在一行中,具有溢出或任何需要的東西。
我已經搜索,但沒有答案以任何方式幫助我。我不知道我是否錯過了一些非常明顯的東西(可能是這樣),或者我相信它有點複雜。
這裏是我的表的副本:http://codepen.io/TheMese/pen/vymEQZ?editors=1100
這裏只是表:
<table class="table table-hover table-striped">
<thead>
<tr>
<th>Uid</th>
<th>Name</th>
<th>Description</th>
<th>High Available</th>
<th>Strict Mode</th>
<th>Shared</th>
<th>Nodes Assigned</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<tr>
<td>123123</td>
<td>Node Pool Name</td>
<td>Node Pool Description</td>
<td>Node Pool High Availability</td>
<td>Node Pool Strict Mode </td>
<td>Node Pool Shared</td>
<td>Node Pool ASsigned</td>
<td>
<button class="btn btn-default"><span class="glyphicon glyphicon-pencil"></span></button>
<button class="btn btn-default"><span class="glyphicon glyphicon-trash"></span></button>
</tr>
</tbody>
</table>
哇,所以看來我只是錯過了一個CSS屬性。謝謝您的幫助。我接受這一個,因爲codepen和片段:) – Mese