我刚刚在IE6中测试了一个使用@ font-face的网站。起初,它工作,字体被替换。然后,当我再次测试它时,@ font-face已完全停止工作,我找不到任何理由。
我正在使用的CSS是
@font-face {
font-family: 'SegoeCondensedBold';
src: url('../Fonts/segoecbd-webfont.eot');
src: url('../Fonts/segoecbd-webfont.eot?#iefix') format('embedded-opentype'),
url('../Fonts/segoecbd-webfont.woff') format('woff'),
url('../Fonts/segoecbd-webfont.ttf') format('truetype'),
url('../Fonts/segoecbd-webfont.svg#SegoeCondensedBold') format('svg');
font-weight: normal;
font-style: normal;
}
#nav
{
width: 96px;
height: 239px;
text-align: center;
margin-right: 19px;
float: left;
background: url(../Assets/nav-bg.png) no-repeat;
font-size: 16px;
font-family: SegoeCondensedBold, Arial;
}
不确定它是否相关,但这里是html头信息。
<link href="Content/Css/Master.css" rel="stylesheet" type="text/css" media="screen" />
<!--[if IE 6]><link href="Content/Css/IE.css" rel="stylesheet" type="text/css" media="screen" /><![endif]-->
<!--[If IE 7]><link href="Content/Css/IE7.css" rel="stylesheet" type="text/css" media="screen" /><![endif]-->
<!--[if IE 6]>
<style type="text/css">
img, div, input, span, a { behavior: url("iepngfix.htc") }
</style>
<![endif]-->
<!--[if IE 6]><script type="text/javascript" src="Script/iepngfix_tilebg.js"></script><![endif]-->
注意:这只是IE6中的一个问题。它适用于所有其他浏览器。 font-face css位于master css文件中。
答案 0 :(得分:0)
在引号中输入字体名称:
font-family: 'SegoeCondensedBold', Arial;