Select first letter of input value and change it's color via CSS

前端 未结 5 1721
忘了有多久
忘了有多久 2021-01-05 20:48

Is there a way to select the text input values first letter and change its color via CSS in the stylesheet? so for example, I have



        
5条回答
  •  梦谈多话
    2021-01-05 21:15

    You cant do it by using an "input tag".

    You have to use a div tag (cf: How do I make an editable DIV look like a text field?), then use another tag (like div) only for your first char, then apply your style on it.

        
        
        
        
        
        
    *Property Address :

    Another solution by DivinusVox (works only if the first char is a letter):

        
        
        
        
        
        
    o Property Address :

提交回复
热议问题