Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Responsive 1-2-3 column flexbox layout? Reply To: Responsive 1-2-3 column flexbox layout?

#241650
Atelierbram
Participant

Didn’t knew or forgot about display: contents, so thanks @paulie_d for I learned something. It’s well explained over here and that seems to be what would work in the demo.

For what it is worth, my point would be that when browser support for CSS grid layout is there, that would the best solution for this layout. Could even do this today with progressive enhancement: @supports (display:grid) { } and flexbox as a default and/or fallback.