Angularjs 将列与行中的其他节和元素对齐

Angularjs 将列与行中的其他节和元素对齐,angularjs,html,css,twitter-bootstrap-3,Angularjs,Html,Css,Twitter Bootstrap 3,我在一行中对齐文本时遇到问题,我尝试使用Fexl方法以及其他方法 also some of the data in my div is rendered dynamically using ng-repeat the third column displays special data always. all the rows from 3 columns should be aligned equally please help me link for plnkr http://p

我在一行中对齐文本时遇到问题,我尝试使用Fexl方法以及其他方法

also some of the data in my div is rendered dynamically using ng-repeat 

the third column displays special data always.

all the rows from 3 columns should be aligned equally 

please help me

link for plnkr http://plnkr.co/edit/LSLktvmvlaQtWUofzJvF?p=preview

我想我理解你的问题-我在另一个项目中遇到了类似的问题,我最终给每个div一个固定的高度,并将溢出设置为隐藏。这需要一点测试,但如果您的目标是响应性设计,您可以使用Sass根据屏幕分辨率将其设置为不同的高度

将此CSS添加到Plunkr将是一个很好的起点。当然,您希望将其应用于自定义类,而不是“.col-md-6”:

.col-md-6 {
height: 100px;
overflow: hidden;
}

根据需要增加“高度”,以确保所有文本都适合。

因为数据是动态的,可以是任何大小,如果我们固定高度,这将不是一个好的做法