我使用bootstrap中的class="thumbnail"
和class="caption"
生成此演示文稿。
问题是,当其中一张卡的标题为1行时,它会变得更大并且会使我col-md-3
或col-md-4
如果标题将在两行上延伸,我如何确保所有卡片的大小相同。
注意标题变长后高度如何增加
谢谢!
答案 0 :(得分:2)
您需要截断您的标题,请参阅示例:
$('button').on('click', function() {
$('p').toggleClass('ellipses');
});
.ellipses {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="container" style="width:120px">
<button>Toggle Ellipses</button>
<p class="ellipses">For more information, please visit: http://csstricks.com/thisisanonexistentandreallylongurltoaddtoanytextinfactwhyareyoustillreadingit.</p>
</div>
答案 1 :(得分:1)
您可以使用Flexbox http://v4-alpha.getbootstrap.com/getting-started/flexbox/,但请阅读有关浏览器支持的详细信息。有关如何使用Flexbox网格的更多详细信息,请访问http://v4-alpha.getbootstrap.com/layout/flexbox-grid/
一个例子 http://getbootstrap.com.vn/examples/equal-height-columns/
答案 2 :(得分:0)