标签:格式 raw font-face mbed 矢量 它的 是你 data url
<div id="twitter">
<span></span><!-- 或者一个div -->
.....
</div>
#twitter:before{
display:inline;
content:‘我是个伪元素‘;
}
<div id="twitter">
<span>我是个伪元素</span>
.....
</div>
@font-face {
font-family: ‘XXX‘; /* 给你的自定义WebFont命名 */
src:url(‘xxx.eot‘);
src:url(‘xxx.eot?#iefix‘) format(‘embedded-opentype‘),
url(‘xxx.woff‘) format(‘woff‘),
url(‘xxxn.ttf‘) format(‘truetype‘),
url(‘xxx.svg#micon‘) format(‘svg‘);
font-weight: normal;
font-style: normal;
...
}
<i class="icon icon_open"></i>
@font-face{
font-family: ‘MyFont‘; /* 给你的自定义WebFont命名 */
src:url(‘xxx.eot‘);
src:url(‘xxx.eot?#iefix‘) format(‘embedded-opentype‘),
url(‘xxx.woff‘) format(‘woff‘),
url(‘xxxn.ttf‘) format(‘truetype‘),
url(‘xxx.svg#micon‘) format(‘svg‘);
font-weight: normal;
font-style: normal;
...
}
.icon{
font-family: ‘MyFont‘;
speak:none; /* 无障碍阅读所需要的,告诉屏幕阅读器不要读这个字符 */
font-size:14px;
font-variant:normal;
font-weight:normal;
text-transform: none;
...
}
.icon_open:before{
content:"\f001"; /* 相应图标的编码 */
...
}
<nav>
<a href="open.html"><i class="icon icon_open"></i>Open</a>
</nav>
转自:https://www.zhihu.com/question/22022905
标签:格式 raw font-face mbed 矢量 它的 是你 data url
原文地址:http://www.cnblogs.com/zzwlong/p/6026893.html