v8.0.16, Perspective
I have a flex container with 6 flex containers inside of it. Is there a way to justify the first 4 to the left and the last 2to the right? Or do I need to have 2 main flex containers, one with 4, the other with 2?
v8.0.16, Perspective
I have a flex container with 6 flex containers inside of it. Is there a way to justify the first 4 to the left and the last 2to the right? Or do I need to have 2 main flex containers, one with 4, the other with 2?
Try
margin-left: auto
on the first item you’d like to be right justified.
You the man!! Thanks!!