How to change placeholder color on focus?

后端 未结 9 954
有刺的猬
有刺的猬 2020-12-04 11:05

How to change the color of placeholder when focus the input field? I use this css to set the default color, but how to change it on focus?

::-webkit-input-pl         


        
9条回答
  •  臣服心动
    2020-12-04 11:39

    Try this, this should work :

    input::-webkit-input-placeholder {
        color: #999;
    }
    input:focus::-webkit-input-placeholder {
        color: red;
    }
    
    /* Firefox < 19 */
    input:-moz-placeholder {
        color: #999;
    }
    input:focus:-moz-placeholder {
        color: red;
    }
    
    /* Firefox > 19 */
    input::-moz-placeholder {
        color: #999;
    }
    input:focus::-moz-placeholder {
        color: red;
    }
    
    /* Internet Explorer 10 */
    input:-ms-input-placeholder {
        color: #999;
    }
    input:focus:-ms-input-placeholder {
        color: red;
    }
    

    Here is an example : http://jsfiddle.net/XDutj/27/

提交回复
热议问题