字体覆盖问题

时间:2019-01-07 00:30:10

标签: fonts

早晨

我正在尝试使用css或html更改段落的字体。

如果在预览模式下执行此操作,则可以看到更改发生,但是在保存和发布文本时,更改不会出现。

以下是我一直在使用的

<p style="font-family:Indie Flower;">This is a paragraph.</p> 

或在CSS内的项目中

font-family: "Indie Flower", sans-serif;

在搜索问题之后,我发现了有关重要规则的信息,在CSS中查看以下代码。

body {
        font-family: "Roboto", sans-serif !important;
        color: #0f1e64;
    }  

这会阻止我更改字体类型吗?如果可以,我该如何允许更改文本?

谢谢

1 个答案:

答案 0 :(得分:0)

更改为

<view android:layout_width="1dp" android:layout_height="match_parent" android:layout_margin="15dp"> </view>

这应该覆盖另一个。

编辑.. 或使用类

您还可以使用CSS类

<p style="font-family:Indie Flower !important;">This is a paragraph.</p> <style> .IndieFlower{ font-family:Indie Flower !important; }

</style>