ask
< div class= "box" >
<span class="item"></span>
<span class="item"></span>
< / div >
.box {
display: flex;
justify-content: space-between;
}
set up so that both span are on both sides of the box
< div class= "box" >
<div class="column">
<span class="item"></span>
<span class="item"></span>
</div>
< / div >
.column {
display: flex;
flex-basis: 100%;
justify-content: space-between;
}
also sets the alignment of items in the container, but the second two containers are nested together. Why should the project of the internal container set flex-basis, and span to be on both sides of the container