Where to find input placeholder style

前端 未结 4 1499
[愿得一人]
[愿得一人] 2021-01-17 20:34

Couldn\'t find default placeholder style for input element. There are no any webkit-input-placeholder, -moz-placeholder, -moz-placeholder

4条回答
  •  一整个雨季
    2021-01-17 20:59

    Please do refer the style for PlaceHolder...

     

    For Example

    /* do not group these rules */
    *::-webkit-input-placeholder {
        color: red;
    }
    *:-moz-placeholder {
        /* FF 4-18 */
        color: red;
    }
    *::-moz-placeholder {
        /* FF 19+ */
        color: red;
    }
    *:-ms-input-placeholder {
        /* IE 10+ */
        color: red;
    }
    

提交回复
热议问题