3

I'm afraid it's not a code talk but, Flexbox and Grid in CSS3 have always made my life easier. But I can't stop worrying about the browser compatibility. Is it seriously safe to use Flexbox and Grid without hesitation in 2020 (now)?

Michael Benjamin
  • 346,931
  • 104
  • 581
  • 701
Jinwook Kim
  • 523
  • 4
  • 11

2 Answers2

5

Whether it's "safe" depends on the percentage of browsers your target audience is using. So the problem can be considered subjective.

There is no fatal instability because at the moment it is rich in polyfills and most modern browsers support flexbox and grid layout.

Support tables of flexbox and grid layout:

Polyfills:

2

I think so, you can see for yourself here: https://caniuse.com/#search=grid

If you have any doubts you can check in your access log to verify your user's browsers via the user-agent

Oded BD
  • 2,788
  • 27
  • 30