Looking for some help with wrapping 4 items in CSS using flex. I want to display 3 items in a row, followed by a single item.
.movies {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items:flex-start;
flex: 1 0 33%;
}
Unfortunately, I'm not allowed to use the column direction.
No matter what I try, all the items end up in one row and I have to scroll sideways. Any suggestions?