CSS Input field text color of inputted text

后端 未结 5 1722
渐次进展
渐次进展 2020-12-13 17:08

I have an input field, and the color of the text in it is black. (I\'m using jquery.placeholder) Let\'s say the text in there is \"E-Mail\"

When you click on this fi

5条回答
  •  一整个雨季
    2020-12-13 17:50

    replace:

    input, select, textarea{
        color: #000;
    }
    

    with:

    input, select, textarea{
        color: #f00;
    }
    

    or color: #ff0000;

提交回复
热议问题