班門打虎
我也找這個(gè)問題很久,最終還是解決了.
由于是按提示照搬,當(dāng)我們刪除多余后會(huì)出現(xiàn)下列代碼:
@font-face {font-family: "iconfont";
url('../fonts/iconfont.ttf') format('truetype'); /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
}
而我們需要在url 前面加入 src: 即可:
@font-face {font-family: "iconfont";
src:url('../fonts/iconfont.ttf') format('truetype'); /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
}
1 贊 2016-03-03 11:16