2013-10-21 88 views

回答

6

只需在您的手写笔源中指定@import 'nib'之前的变量vendor-prefixes即可。您可以检查默认值in the source

例如:

vendor-prefixes ?= webkit moz official 
@import 'nib' 
div 
    background linear-gradient(red, blue) 

收率:

div { 
    background: -webkit-linear-gradient(#f00, #00f); 
    background: -moz-linear-gradient(#f00, #00f); 
    background: linear-gradient(#f00, #00f); 
} 
相关问题