Eric Eggert, outline
Brad Frost
Source: StatCounter Global Stats - Platform Comparison Market Share
Can I Use css-grid? Data on support for the css-grid feature across the major browsers from caniuse.com.
Can I Use css-featurequeries? Data on support for the css-featurequeries feature across the major browsers from caniuse.com.
.main { width: 45% ; }
.div1 { float: left ; }
.div2 { float: right; }
@supports (display: grid;) {
.main {
display: grid;
grid-columns-template: 1fr 1fr;
}
}