当本地存在时,避免webfont下载

时间:2012-09-16 04:50:58

标签: html css webfonts

如果在本地计算机上已经存在webfont(例如Mylius Modern),我怎么能避免它从网站动态加载?

1 个答案:

答案 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 */
}