大家好!我最近发现Grid是一种完美的布局风格,但Chrome或FireFox等浏览器不支持它,除非你做一些标志设置。 因此,如果我想制作网格布局,我必须检测浏览器是否支持网格。如果浏览器不支持它,我将加载css-grid-polyfill.js并实现它:
if (!Modernizr.**some_property**) {
require(["css-grid-polyfill.js"], function (){
console.log('css-grid-polyfill.js is loaded');
});
}
So the problem is what property of the Modernizr can tell whether browser support grid layout or not? Many thanks in advance!