how to remove the bold from a headline?

后端 未结 9 1521
半阙折子戏
半阙折子戏 2021-02-06 20:11

I have a headline:

THIS IS A HEADLINE

How do i make the phrase \"THIS IS...\" not to be bold and the rest without a change

9条回答
  •  隐瞒了意图╮
    2021-02-06 20:40

    This is a Headline

    h1 { font-weight: normal; text-transform: uppercase; } h1 span { font-weight: bold; }

    I'm not sure if it was just for the sake of showing us, but as a side note, you should always set uppercase text with CSS :)

提交回复
热议问题