修改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;
}

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM