如果在本地计算机上已经存在webfont(例如Mylius Modern),我怎么能避免它从网站动态加载?
答案 0 :(得分:2)
对于其他网站,你什么都不能做。但如果你想在你的网站上这样做,那么css3可以帮助你
@font-face {
font-family: Mylius Modern;
src: local(Mylius Modern), /* use locally available Mylius Modern*/
url(Mylius_Modern.ttf); /* otherwise, download it */
}