作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Visual Studio 2017; ASP.NET 核心 MVC; Razor ; Bootstrap
这是我的 cshtml-file
的一部分:
<table class="table table-striped table-bordered">
<colgroup>
<col />
<col style="width:auto; white-space:nowrap" />
</colgroup>
<tbody>
@foreach (var item in Model) {
<tr>
<td style="vertical-align:central">@item.TemplateName</td>
<td>
<div class="btn-group pull-right">
<a class="btn btn-default" href="#" title="Редактировать">
<span class="glyphicon glyphicon-edit"
aria-hidden="true"></span>
</a>
<a class="btn btn-default" href="#" title="Копировать">
<span class="glyphicon glyphicon-plus-sign"
aria-hidden="true"></span>
</a>
<a class="btn btn-default" href="#" title="Удалить">
<span class="glyphicon glyphicon-remove"
aria-hidden="true"></span>
</a>
</div>
</td>
</tr>
}
</tbody>
</table>
结果和我预想的不一样:
我需要第一列的内容垂直居中。我还需要根据其内容调整第二列的宽度。
我怎样才能得到它?
最佳答案
你能看看这个吗 http://plnkr.co/edit/I8XBE1kAG8qd0ivWRDhS?p=preview
vertical-align:middle //align vertically middle
<td style="width:1%;white-space:nowrap">
<div class="btn-group pull-right" style="width: auto;min-width: 120px;">
//to fit column width according to its content.
关于css - 如何垂直对齐列内容并设置适合的列宽?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43651938/
我是一名优秀的程序员,十分优秀!