CSS3条件判断——@supports
@supports (display:flex) { section { display: flex } ... } 上面这段代码的意思是:如果浏览器支持“display:flex”属性,那么在“section”元素上就运用“display:flex”样式。 not逻辑声明——排除 @supports not (display: flex){ #container div{float:left…
591 2014-12-14 去围观前端资源
@supports (display:flex) { section { display: flex } ... } 上面这段代码的意思是:如果浏览器支持“display:flex”属性,那么在“section”元素上就运用“display:flex”样式。 not逻辑声明——排除 @supports not (display: flex){ #container div{float:left…
591 2014-12-14 去围观