How to capitalize first letter and lowercase the rest of the string

后端 未结 5 1216
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-20 05:22

I am trying to capitalize the first letter of only the first word in a sentence.

This is the data in the tsx file { this.text({ id: downloadPriceHistory

5条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-20 06:11

    Using CSS:

    p {
      text-transform: lowercase;
    }
    p::first-letter {
      text-transform: uppercase
    }
    

    Using JS:

    const capitalize = (s) => s.charAt(0).toUpperCase() + s.slice(1).toLowercase();
    

提交回复
热议问题