1. 程式人生 > >字體圖標出現亂碼的兼容方案

字體圖標出現亂碼的兼容方案

chrome family 網頁 pen firefox oid android format mil

/* 只需在iOS4.3+/Android2.2+上運行的網頁 */ 
@font-face { font-family: "iconfont"; src: url("iconfont.ttf") format("truetype"); } 
/* 需兼容各瀏覽器的網頁。註意: 最後的svg沒有指定format */ 
@font-face { font-family: "iconfont"; src: url("iconfont.eot"); /* IE9*/ src: url("iconfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
url("iconfont.woff") format("woff"), /* chrome、firefox */ url("iconfont.ttf") format("truetype"), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/ url("iconfont.svg#iconfont"); /* iOS 4.1- */ }

字體圖標出現亂碼的兼容方案