2

I'm trying to see how my app will look when css grid isn't available. Is it possible to turn off properties like css grid inside of the chrome or canary?

Temani Afif
  • 245,468
  • 26
  • 309
  • 415
Armeen Moon
  • 18,061
  • 35
  • 120
  • 233

3 Answers3

2

The CSS Feature Toggles plugin for Chrome can do this. It adds a tab in the developer toolbox with checkboxes for various CSS features that are popular for browsers to not implement, like Grid:

enter image description here

Checking the relevant box will disable the respective feature.

George Hilliard
  • 15,402
  • 9
  • 58
  • 96
0

Download an older version of Chrome that doesn't support this feature after checking it on https://caniuse.com/#search=shape-outside.

zavr
  • 2,049
  • 2
  • 18
  • 28
-3

Just comment out CSS Grid.

/* .container { display: grid; } */

Or uncheck the rule in dev tools.

Chrome will then ignore all grid properties, just like a browser would that lacks support for the feature.

Michael Benjamin
  • 346,931
  • 104
  • 581
  • 701