我有很多 css 类,我在其中重新定义字体大小,例如:
.ko {font-size:2.2em;}
.szik {font-size:2.8em}
现在我用自定义字体替换我的默认字体,我定义了一个新字体:
@font-face {
font-family: BebasNeue;
src: url("http://acc-road.com/page/media/BebasNeue.otf") format("opentype");
}
我的问题是旧的字体大小与新的不匹配,这是我重写所有代码的最后机会。我能轻松解决这个问题吗?如何?
我尝试了这个解决方案,但它不起作用。
@font-face {
font-family: BebasNeue;
src: url("http://acc-road.com/page/media/BebasNeue.otf") format("opentype");
font-size: 10.5em;
font-size-adjust: 10.5;
}
感谢您的回答。