码迷,mamicode.com
首页 > 其他好文 > 详细

【代码片端】@Font-Face

时间:2014-11-12 21:12:20      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   ar   sp   for   文件   div   

这个主要是用于嵌入字体的模块,一般适用于嵌入文件较小的字体,中文字体很大,所以很少被嵌入。

@font-face{ 
  font-family: ‘MyFont‘;
  src: url(‘myfont.eot‘);
  src: url(‘myfont.eot?#iefix‘) format(‘embedded-opentype‘),
    url(‘myfont.woff‘) format(‘woff‘),
    url(‘myfont.ttf‘) format(‘truetype‘),
    url(‘myfont.svg#webfont‘) format(‘svg‘);
}

h1 { font-family: ‘MyFont‘, sans-serif; }

延伸学习教程:http://www.w3cplus.com/content/css3-font-face(中文)

【代码片端】@Font-Face

标签:style   blog   http   color   ar   sp   for   文件   div   

原文地址:http://www.cnblogs.com/kojya/p/4093383.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!