当前位置:Gxlcms > html代码 > 修改输入框placeholder文字默认颜色-webkit-input-placeholder_html/css_WEB-ITnose

修改输入框placeholder文字默认颜色-webkit-input-placeholder_html/css_WEB-ITnose

时间:2021-07-01 10:21:17 帮助过:20人阅读

html5为input添加了原生的占位符属性placeholder,高级浏览器都支持这个属性,例如:

默认的placeholder字体颜色是呈浅灰色,如果想改变这个默认颜色,解决方案如下:

input:-moz-placeholder,textarea:-moz-placeholder {    color: #999999;}input:-ms-input-placeholder,textarea:-ms-input-placeholder {    color: #999999;}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder {    color: #999999;}

人气教程排行