I am trying to create a flex row with three columns, but when I only have two columns in the row, the second column gets pushed to the right side. You can see this issue in the image below.
https://i.sstatic.net/cVVqB.png
In the image, the red lines indicate how I want all columns to be positioned.
The CSS for the row is as follows:
display: flex;
justify-content: space-between;
flex-flow: row wrap;
And the CSS for the columns is:
display: flex;
flex-direction: column;
Additionally, Bootstrap 4 is being used, with the row having the "row" class and the columns using "col" classes.
Is there a way to keep two columns in a row positioned correctly, similar to how they would be with three columns?