我有一個字體,我已經使用@ font-face併入了我的網站。即使它在ff/chome/safari中顯示得很好,在Opera中渲染也很困難。歌劇和@ font-face
我使用Google的字體API;這是我的html:
<link
href='http://fonts.googleapis.com/css?family=Muli'
rel='stylesheet'
type='text/css' >
,然後我的CSS:
/* this is whats in the linked file */
@font-face
{ font-family: 'Muli';
font-style: normal;
font-weight: 400;
src: local('Muli'), url('http://themes.googleusercontent.com/static/fonts/muli/v2/ kU4XYdV4jtS72BIidPtqyw.woff') format('woff');
}
/* this is the css in my site */
body
{ font-family: 'Muli', sans-serif;
}
我不知道這是爲什麼不工作:在API稱它與歌劇10.5起來......
據http://dev.opera.com/articles/view/introducing-woff-web-open-font-format/WOFF僅支持Opera 11.10及更高版本。 – DanMan