浏览器内核 |
私有前缀 |
浏览器 |
webkit |
-webkit- |
chrome、safari、安卓、ios |
trident |
-ms- |
IE |
gecko |
-moz- |
firefox |
presto |
-o- |
opera |
h1{
text-stroke:1px red;/*保证此属性纳入标准后能正常使用*/
text-fill-color:blue;
-webkit-text-stroke:1px red;/*保证此属性纳入标准前webkit内核的浏览器可用,如chrome、safari*/
-webkit-text-fill-color:blue;
-ms-text-stroke:1px red;/*保证此属性纳入标准前trident内核的浏览器可用,如IE*/
-ms-text-fill-color:blue;
-moz-text-stroke:1px red;/*保证此属性纳入标准前gecko内核的浏览器可用,如firefox*/
-moz-text-fill-color:blue;
-o-text-stroke:1px red;/*保证此属性纳入标准前presto内核的浏览器可用,如opera*/
-o-text-fill-color:blue;
}