我使用的引導下表時,有太多的文字:文本換擋元件引導
它推列下來,甚至沒有接近推前填充整個區域行的大小...加上文本不與自己對齊。我嘗試在CSS中的文本對齊來解決這個問題,但沒有找到答案。
這裏是沒有增加的混亂只是普通的代碼:
<div class="container">
<table class="table">
<thead>
<tr>
<th>Event</th>
<th>Last Ran</th>
<th>Next Run</th>
<th>Options</th>
<th>Details</th>
</tr>
</thead>
<tbody>
@foreach (PIM5.Web.Models.Event evt in Model.Events)
{
<tr [email protected]tus>
<td><b>@evt.name</b></td>
<td>@evt.lastRan</td>
<td>@evt.nextRun</td>
<td style="max-width: 150px">
@if (evt.options > 0)
{
<button type="button" class="btn btn-success" onclick="doProcessStart('@evt.name')">Start</button>
<button type="button" class="btn btn-warning" onclick="doProcessStop('@evt.name')">Stop</button>
<button type="button" class="btn btn-info" onclick="doProcessEdit('@evt.name')">Edit</button>
}
@if (evt.options > 1)
{
<button type="button" class="btn btn-success">Force</button>
}
<button type="button" class="btn btn-danger" onclick="doProcessRemove('@evt.name')">Remove</button>
</td>
<td>@evt.description</td>
</tr>
}
</tbody>
</table>
<button class="btn btn-success" onclick="doAddEvent()">New Event</button>
</div>
之前,首先填寫黑匣子區推下排和絕不增加排的寬度並關閉屏幕
願意使用JavaScript或任何可以解決此問題的東西。
就給固定寬度到每一列 –
固定寬度不利於移動設備 - 使用%寬度 - 在這種情況下,雖然使用自舉列作爲已經在使用自舉 –