- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Twitter-Bootstrap (3.0) 为学校设计一个项目网站,我们正在制作一个在线风险克隆,像 Words With Friends 这样的独立轮流。我使用一个 HTML 表格来显示玩家当前游戏的列表,我想让它最右边的列与边缘齐平并且没有很多额外的空白。
这是我的虚拟表:
<table class = "table table-hover">
<thead>
<tr>
<th> Game ID </th>
<th> Status </th>
<th> Players </th>
<th> Turn </th>
<th> Last Turn </th>
</tr>
</thead>
<tbody>
<tr>
<td> 1 </td>
<td> IN PROGRESS </td>
<td> 4/4 </td>
<td> tedbeem </td>
<td> 11/12/13 6:30 PM </td>
<td> <button class = "btn btn-primary"> View </button> </td>
</tr>
<tr>
<td> 2 </td>
<td> RECRUITING </td>
<td> 4/5 </td>
<td> N/A </td>
<td> 11/12/13 3:10 PM </td>
<td> <button class = "btn btn-primary"> View </button> </td>
</tr>
<tr>
<td> 13 </td>
<td> IN PROGRESS </td>
<td> 3/3 </td>
<td> D-Halt-on </td>
<td> 11/12/13 9:00 AM </td>
<td> <button class = "btn btn-primary"> View </button> </td>
</tr>
</tbody>
</table>
最佳答案
问题是最后一列( 右 对齐)占用的空间比其中的按钮( 左 对齐)需要更多的空间。
要解决此问题,您可以执行以下任一操作:
table tr td:last-child {
white-space: nowrap;
width: 1px;
}
table tr td:last-child {
text-align: right;
}
<th style="width: 36px;"></th>
设置整列的宽度
关于twitter-bootstrap - 使 Twitter Bootstrap Table 最右边的列与边缘齐平,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20151370/
我必须为 IE11 编写一些网格回退。 我想将元素 4 放在右下角,以便元素 1 可以一直向下延伸到底部吗? 我认为这对 flexbox 来说是不可能的,对吧? : https://jsfiddle.
您好,我正在尝试让 2 个 div 在左侧与右侧对齐。 #div1 #div2 #div1 #div2 #div3 #div2 #div3 #div3 诀窍是当浏览器窗口变小时,我希望#div2 位于
如何才能点击 EditText 的右侧可绘制对象(查看屏幕截图)?我尝试了几种方法,但总是卡住。 public static Matcher withEditTextDrawable(final in
这个问题在这里已经有了答案: In CSS Flexbox, why are there no "justify-items" and "justify-self" properties? (6
所以我有 10 个复选框,每个标签都取自数组中相应的索引。我正在使用 ng-repeat 来展示它们: {{entity}}
我是一名优秀的程序员,十分优秀!