您的位置:首页 > Web前端 > CSS

调整文本输入框placeholder的颜色等样式

2016-08-19 16:11 302 查看
input::-webkit-input-placeholder{
color: white !important;
}
input:-moz-placeholder{
color: white !important;
}
input::-moz-placeholder{
color: white !important;
}
input:-ms-input-placeholder{
color: white !important;
}

note: 一些手机上闪烁的光标的高度与当前的输入框的行高(line-height)值有关
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: