2015-08-15 70 views
-3

这个浏览器特定的CSS如何使用?如何使用浏览器特定的CSS像-webkit- -moz-

我有这样的:

.example { 
    transition: all 0.2s ease-in-out 0s ; 
    -moz-transition: all 0.2s ease-in-out 0s ; 
    -webkit-transition: all 0.2s ease-in-out 0s 
} 

所有具有相同的值all 0.2s ease-in-out 0s

我应该用他们三个,还是只有一个这样的吗?

.example { 
    transition: all 0.2s ease-in-out 0s ; 
} 

此转换的默认值为css。

这是浏览器特定的CSS使用,如果我只想要某些浏览器的特定样式,还是必须使用即使值相同的要求?

+1

http://css-snippets.com/browser-prefix /。此外,请参阅http://stackoverflow.com/questions/9401830/do-we-have-to-use-non-standard-browser-specific-css-vendor-prefixes-more more possible duplicates –

+0

您只需要-webkit前缀。 -moz不再需要了。 http://caniuse.com/#search=transition – dfsq

回答

0
.example { 
    transition: all 0.2s ease-in-out 0s ; 
    -moz-transition: all 0.2s ease-in-out 0s ; 
    -webkit-transition: all 0.2s ease-in-out 0s 
} 

这将在大多数浏览器。

.example { 
    transition: all 0.2s ease-in-out 0s ; 
} 

这将不超过2浏览器

请参见本指南工作:http://caniuse.com/

相关问题