我或多或少是新的WordPress,因此请对我宽容.我想使用自定义托管字体,因此我添加了以下代码到我的主题style.css
:
@font-face {
font-family: "Courier Prime";
font-weight: normal;
font-style: normal;
src: url("fonts/Courier_Prime/CourierPrime-Regular.ttf") format("truetype");
src: url("fonts/Courier_Prime/CourierPrime-Regular.woff") format("woff");
src: url("fonts/Courier_Prime/CourierPrime-Regular.woff2") format("woff2");
}
并将自定义类courier
添加到元素中以使用其他字体。
自定义CSS部分看起来像这样:
.courier {
font-family: "Courier Prime", monospace !important;
}
但结果呈现了另一种字体(看起来它使用的是macOS的“monospace”字体,而不是“Courier Prime”):
我做错了什么?
1条答案
按热度按时间qpgpyjmq1#
我可以通过另一种方法很容易地解决这个问题:
我将字体数据添加到我的主题
theme.json
:在那之后,我可以通过自定义css和直接在 gutenberg 的“排版”样式选项卡中设置字体。