如何将字体大小增加到 "is-size-1" 以上?

How do I increase the font size beyond "is-size-1"?

<h1 class="title is-size-1-desktop is-spaced is-size-2-tablet is-size-3-mobile has-text-centered has-text-primary has-text-weight-bold">Hello World</h1>

如何增加它的字体大小?我想让它说“Hello World”更大。谢谢

在你的 css:

h1.title {
    font-size: 50px; // or however big you want it
}

或内联

<h1 style="font-size: 50px;" class="title is-size-1-desktop is-spaced is-size-2-tablet is-size-3-mobile has-text-centered has-text-primary has-text-weight-bold">Hello World</h1>

ps: 如果您使用第一种方法,请确保您的其他 类 的 none 覆盖字体大小,您可以添加 !important 以确保确定,但这不是最佳做法(字体大小:50px!重要;)