我对@ font-face声明有疑问。在Firefox和Chrome中有效,但在Safari 5.5不起作用时,我在声明MinionPro-Regular字体时会看到Times New Roman字体。我搜索了关于这个问题的其他问题,我把font-weight:normal; font-style:normal;但问题仍然存在。我使用Font Squirrel的Web字体生成器生成了@ font-face代码。
我的@ font-face声明就是这个
@font-face {
font-family: 'MinionPro-Regular';
src: url('/fonts/MinionPro-Regular.eot?#iefix') format('eot'),
url('/fonts/MinionPro-Regular.otf') format('opentype'),
url('/fonts/MinionPro-Regular.woff') format('woff'),
url('/fonts/MinionPro-Regular.ttf') format('truetype'),
url('/fonts/MinionPro-Regular.svg#MinionPro-Regular') format('svg');
font-weight: normal;
font-style: normal;
css就是这个
#block-system-main-menu{
font-family: 'MinionPro-Regular';
font-size: 22px;
letter-spacing: 3px;
line-height:1.2;
}
会发生什么?
谢谢!