Flexbox row

You can set the CSS rule in the flexbox container to put all its items in a row:
flex-direction: row;
Here, you can see all the items arranged inside a single row:
First
Second
Third
Fourth
Fifth
By default, all flexbox items are arranged and made to fit in a single row. So, using that rule isn't necessary.