Home › Forums › CSS › Responsive 1-2-3 column flexbox layout? › Reply To: Responsive 1-2-3 column flexbox layout?
May 16, 2016 at 4:26 am
#241650
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.