bootstrap table 中的垂直对齐不起作用

Vertical align in bootstrap table not working

我正在尝试在 bootstrap table 中垂直居中对齐文本。

我已在 and tried the solution, but as this bootply shows, it's not affecting the alignment. See http://www.bootply.com/OkzxyD2JSk

阅读答案

任何人都可以确定我做错了什么,以及如何使文本垂直居中而不是在 table 行的顶部附近对齐?

发生这种情况是因为您使用了段落 <p>,文件 "type.less" 中有 padding-bottom: 10px; 说明。要垂直对齐,您只需要使段落的顶部和底部填充相等:

p {
  margin: 5px 0;
}

看看http://www.bootply.com/qOt7aGzaJW