修改input,textarea 标签 placeholder的颜色 和光标

input,
textarea {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); //去除手机端点击的背景色
    caret-color: #EE2B32;//光标
}
input::-webkit-input-placeholder,textarea::-webkit-input-placeholder {
    color: #999999;
    font-weight: 500;
}
textarea:-moz-placeholder,input:-moz-placeholder {
    color: #999999;
    font-weight: 500;
}

textarea::-moz-placeholder,input::-moz-placeholder {
    color: #999999;
    font-weight: 500;
}

textarea:-ms-input-placeholder,input:-ms-input-placeholder {
    color: #999999;
    font-weight: 500;
}

 

posted @ 2020-04-06 17:21  瞳孔中的那一抹黑  阅读(793)  评论(0)    收藏  举报