因此,我正在尝试在我的网站上使用Overseer,但是对于未在其PC上安装该字体的任何人都不会出现。我使用@font face和该字体的5个不同版本(otf,eot,woff,ttf和svg),但仍然无法加载。有什么办法可以解决这个问题?这是@ font-face CSS。
@font-face {
font-family: Overseer;
src: url(fonts/overseer.eot);
src: url(fonts/overseer.eot) format('embedded-opentype'), url(fonts/overseer.woff) format('woff'), url(fonts/overseer.ttf) format('truetype'), url(fonts/overseer.svg) format('svg');
font-weight: 400;
font-style: normal;}
最佳答案
尝试这个!一些小的更改可能会有所帮助。
@font-face {
font-family: 'Overseer';
src: url(fonts/overseer.eot);
src: url(fonts/overseer.eot?#iefix) format('embedded-opentype'),
url(fonts/overseer.woff) format('woff'),
url(fonts/overseer.ttf) format('truetype'),
url(fonts/overseer.svg#Overseer) format('svg');
font-weight: 400;
font-style: normal;
}
这个对我有用。使字体工作有时可能很困难。
如果可行,请接受。