@font-face css3自定义个性化字体
使用第三方平台转换字体文件为font-face所支持的格式。
TureTpe(.ttf)格式
支持浏览器:IE9+,Firefox3.5+,Chrome4+,Safari3+,Opera10+,iOS Mobile Safari4.2+
OpenType(.otf) 格式
支持浏览器:Firefox3.5+,Chrome4.0+,Safari3.1+,Opera10.0+,iOS Mobile Safari4.2+
Web Open Font Format(.woff) 格式
支持浏览器:IE9+,Firefox3.5+,Chrome6+,Safari3.6+,Opera11.1+
Embedded Open Type(.eot)格式
支持浏览器:.eot字体是IE专用字体,可以从TrueType创建此格式字体,支持这种字体的浏览器有【IE4+】
SVG(.svg) 格式
Chrome4+,Safari3.1+,Opera10.0+,iOS Mobile Safari3.2+
引入字体
@font-face { font-family: "FamilyName"; src: url("path.eot"); src: url("path/to/*.eot?#iefix") format("embedded-opentype"), url("path/to/*.woff") format("woff"), url("path/to/*.ttf") format("truetype"), url("path/to/*.svg#FamilyName") format("svg"); font-weight: normal; font-style: normal; }
FamilyName 会在刚刚下载的文件中的css 文件中有,可以直接使用,不用在定义
使用字体
直接 style="font-family:FamilyName" 或直接class 内定义使用到指定元素上。
div{font-family:myFirstFont;}