css - Align last two flexbox justify-content item to the left -
this question has answer here:
- flex-box: align last row grid 20 answers
- how change flexbox wrap? 2 answers
how possible align last 2 items left? there huge gap between last 2 items. there flexbox directive fixes that?
.container { display: flex; flex-wrap: wrap; justify-content: space-between; align-content: space-between; width: 250px; border: 1px solid #000; } <div class="container"> <div>xxxxxxxx</div> <div>xxxxxxxx</div> <div>xxxxxxxx</div> <div>xxxxxxxx</div> <div>xxxxxxxx</div> <div>xxxxxxxx</div> <div>xxxxxxxx</div> <div>xxxxxxxx</div> </div>
Comments
Post a Comment