@font-face {
font-family: 'Somefont;
src: url('fonts/somefont.eot');
src: url('fonts/somefont.eot?#iefix') format('embedded-opentype'),
url('fonts/somefont.woff') format('woff'),
url('fonts/somefont.ttf') format('truetype'),
url('fonts/somefont.svg#Somefont') format('svg');
font-weight: normal;
font-style: normal;
}
这是我们通常用于在网页上嵌入字体的CSS。
我是一名字体设计师,因此我知道(并且已经看到)当设计从otf字体转换时,ttf的曲线总是有点失真。 (我使用fontsquirrel Web字体生成器)。
有没有办法用otf替换整个ttf文件,这在所有浏览器上都是可靠的特别是webkit吗?
我做了一些实验,发现说某些浏览器实际使用了哪些数据令人困惑。 我想要实现的是尽可能地废除ttf文件以支持otf。
非常感谢您的回答。