css - Align last two flexbox justify-content item to the left -


this question has answer here:

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

Popular posts from this blog

PHP and MySQL WP -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

go - golang pprof for c library code -