Change color of one character in a text box HTML/CSS

后端 未结 7 1930
南笙
南笙 2020-12-01 12:24

I\'m designing a web site and i would like to ask you guys that, how can I change the color of just one character in a string in a text box of HTML by CSS?

example

相关标签:
7条回答
  • 2020-12-01 12:59

    I just want to add to the solution if you want to change color of only first character then there is a CSS selector element::first-letter

    example:

    div::first-letter{
       color: red;
    }
    
    0 讨论(0)
提交回复
热议问题