【发布时间】:2014-04-30 20:27:28
【问题描述】:
考虑以下 HTML 和 CSS:
<div class="wrapper">
<div class="first">The CSS3 Flexible Box, or flexbox, is a layout mode providing for the arrangement .</div>
<div class="second"></div>
</div>
<div class="wrapper">
<div class="first"></div>
<div class="second"></div>
</div>
.wrapper {
display: flex;
border: 1px solid black;
width: 300px;
height: 100px;
margin-top: 30px;
}
.first {
flex-grow: 1;
background-color: #aaa;
}
.second {
width: 80px;
background-color: #ddd;
}
结果如下:
为什么第一个包装器不尊重.second 的width: 80px?
我如何使用 flexbox 解决这个问题?
【问题讨论】: