Forums

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

Home Forums CSS [Solved] Flexbox with fallback Reply To: [Solved] Flexbox with fallback

#209904
rolfens
Participant

Remember CSS fallback:

.myEl {
/* for older browsers /
display: table;
/
older browser will not understand flex and ignore it.
Newer browsers wont */
display: flex;
}

It’s limited but something it’s all that is needed (sometimes not, though, then you may need javascript, CSS tricks, conditional comments, etc.)