Change an HTML5 input's placeholder color with CSS

后端 未结 30 3067
猫巷女王i
猫巷女王i 2020-11-21 04:36

Chrome supports the placeholder attribute on input[type=text] elements (others probably do too).

But the following CSS doesn\'t do anything

30条回答
  •  孤街浪徒
    2020-11-21 05:06

    The easiest way would be:

    #yourInput::placeholder {
        color: red;/*As an example*/
    }
    /* if that would not work, you can always try styling the attribute itself: */
    #myInput[placeholder] {
        color: red;
    }
    

提交回复
热议问题