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

邮差的信 提交于 2020-04-06 18:10:35
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;
}

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!