display:flex下图片的高度不适应问题

在使用bootstrap的栅格布局下 .row下的图片高度不适应。原因是 .row的display:flex引起的。

解决:

.row{

display:flex;

align-items:center; //增加此属性

}

发表评论