干啥的?
规定元素的初始宽度。
那为啥不用width?width也可以,大概是因为为了创建一个flex体系?目前没发现width有不能替代flex-basis的地方
<style>
.fbox {
display: flex;
width: 250px; background-color:gray;
}
.child {
background-color:green;
margin: 3px;
flex-basis: 60px;
}
</style>
<div class=fbox>
<div class="child">div1</div>
<div class="child">div2 long</div>
<div class="child">div3</div>
</div>
结果