2
I have the responsive site, and I have a list of products. On the desktop it is OK, it is for example:
|PRODUTO 1| |PRODUTO 2| |PRODUTO 3|
|PRODUTO 4| |PRODUTO 5| |PRODUTO 6|
|PRODUTO 6| |PRODUTO 7| |PRODUTO 8|
On the phone, is on top of each other, It is 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? It’s possible?
Editing, I got it with the following CSS:
-webkit-flex: 1 1 50%;
flex: 1 1 50%;
min-width: 1px;
Are you using any columns-based CSS framework? Type, Bootstrap and such
– Jéf Bueno
No, @jbueno, no framework.
– Lucas de Carvalho