In this JSfiddle, the last 2 items on the last row are justified. Instead, I want them to be align to the left.
How to do that?
ul,
li {
list-style: none;
}
ul {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
li {
width: 30%;
height: 80px;
background: red;
margin-bottom: 30px;
}
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>