css bold first word

后端 未结 5 1906
鱼传尺愫
鱼传尺愫 2020-12-06 16:48

How can I bold the first word of sentence using CSS selectors and is this a good/bad way to do this with respects to browser comparability?

code:

  &         


        
5条回答
  •  庸人自扰
    2020-12-06 17:02

    The current CSS selectors do now allow this.

    So I change my approach to bold the first line.

    HTML

    this
    is a sentence

    CSS

    h2::first-line{
       font-weight: bold;
    }
    

提交回复
热议问题