css bold first word

后端 未结 5 1903
鱼传尺愫
鱼传尺愫 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:12

    Use Span class

    So creat a class called bold and wrap first word in the class.

    .bold {
    font-weight:bold;
    }
    

    Then

    the brown fox

提交回复
热议问题