CodePen:http://codepen.io/anon/pen/RPNpaP。 我希望红色框在并排视图中只有25 em宽 - 我试图通过在
中设置css来实现这一点@media all and (min-width: 811px) {...}
到
.flexbox .red {
width: 25em;
}
但是当我这样做时,会发生这种情况:
http://i.imgur.com/niFBrwt.png
知道我做错了什么吗?非常感谢。
答案 0 :(得分:174)
您应该使用flex
或flex-basis
属性而不是width
。详细了解MDN。
.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>
&#13;
根据您的代码查看updated codepen。
答案 1 :(得分:0)
万一有人想拥有一个具有百分比(%)的响应式弹性框,那么进行媒体查询要容易得多。
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%;
}