如何设置一个固定宽度的列与CSS flexbox

我想让红色框在并排视图时只有25 em宽-我试图通过在这个媒体查询中设置CSS来实现这一点:

@media all and (min-width: 811px) {...}

:

.flexbox .red {
width: 25em;
}

但当我这样做的时候,会发生这样的事情:

enter image description hereCodePen: http://codepen.io/anon/pen/RPNpaP

知道我哪里做错了吗?

321847 次浏览

你应该使用flexflex-basis属性,而不是width。阅读更多关于中数的内容。

.flexbox .red {
flex: 0 0 25em;
}

flex CSS属性是一个简写属性,指定一个伸缩项改变其尺寸以填充可用空间的能力。它包含:

flex-grow: 0;     /* do not grow   - initial value: 0 */
flex-shrink: 0;   /* do not shrink - initial value: 1 */
flex-basis: 25em; /* width/height  - initial value: auto */

一个简单的演示演示了如何将第一列设置为50px固定宽度。

.
.flexbox {
display: flex;
}
.red {
background: red;
flex: 0 0 50px;
}
.green {
background: green;
flex: 1;
}
.blue {
background: blue;
flex: 1;
}
<div class="flexbox">
<div class="red">1</div>
<div class="green">2</div>
<div class="blue">3</div>
</div>


根据你的代码查看更新codepen

如果有人想有一个响应百分比(%)的flexbox,这是更容易的媒体查询。

flex-basis: 25%;

这将在测试时更加流畅。

// VARIABLES
$screen-xs:                                         480px;
$screen-sm:                                         768px;
$screen-md:                                         992px;
$screen-lg:                                         1200px;
$screen-xl:                                         1400px;
$screen-xxl:                                        1600px;


// QUERIES
@media screen (max-width: $screen-lg) {
flex-basis: 25%;
}


@media screen (max-width: $screen-md) {
flex-basis: 33.33%;
}

实际上,如果你真的想使用width CSS属性,另一个解决方法是应用这个:

.flexbox .red {
width: 100%;
max-width: 25em;
}