0

所以我终于在我的 WordPress 网站上安装了 Birch 字体。现在字体的大小不像我预期的那样(点击这里)。我试过编辑font-size, line-height, font-weight, font-style, ...似乎没有任何效果。奇怪的是,在 iPhone 上它就像一个魅力。

在我的标题中,我添加了这个。

<style type="text/css" media="screen, print">
@font-face {
font-family: Birch;
    src: url('../wp-content/themes/zenon-lite/fonts/birch.ttf') format('truetype'),
    url('../wp-content/themes/zenon-lite/fonts/birch.eot') format('embedded-opentype'),
    url('../wp-content/themes/zenon-lite/fonts/birch.woff') format('woff'),
    url('../wp-content/themes/zenon-lite/fonts/birch.svg') format('svg');
font-weight: normal;
font-style: normal;
}

body { font-family: Birch, Tahoma; }
p {font-size: 1.5em;}
</style>
4

1 回答 1

1

您已经在body其他地方设置了字体大小。因此,您的印刷元素将以浏览器默认大小呈现。您还需要定义各个组件的尺寸,例如:

CSS:

h1 {
 font-size: 2em;
}
h2 {
 font-size: 1.5em;
}
于 2013-10-24T12:06:05.260 回答