I have a responsive website, and I have a list of products. On the desktop it is OK, for example:
|PRODUTO 1| |PRODUTO 2| |PRODUTO 3|
|PRODUTO 4| |PRODUTO 5| |PRODUTO 6|
|PRODUTO 6| |PRODUTO 7| |PRODUTO 8|
On the cell phone, stay on top of each other, because of the size of the screen:
|PRODUTO 1|
|PRODUTO 2|
|PRODUTO 3|
|PRODUTO 4|
|PRODUTO 5|
I wanted the cell phone to be organized 2 in 2:
|PRODUTO 1| |PRODUTO 2|
|PRODUTO 3| |PRODUTO 4|
|PRODUTO 5| |PRODUTO 6|
How do I organize this with css? Is it possible?
Editing, I did it with the following CSS:
-webkit-flex: 1 1 50%;
flex: 1 1 50%;
min-width: 1px;