在Bootstrap中,col-xs-12不是100%宽度的ocupying,因为display:flex;属性

时间:2015-06-13 20:58:01

标签: twitter-bootstrap flexbox

enter image description here

我需要垂直对齐我的站点左侧的图像,该图像使用bootstrap。我发现了一个解决方案here一切正常但是当我调整到xs屏幕时,属性col-xs-12与另一列共享空间并且没有采用100%宽度。 我应该如何尊重所提供的给定空间?

1 个答案:

答案 0 :(得分:2)

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) { 
    .vertical-align {
        display: flex;
        align-items: center;
    }
}

我没有仔细阅读here