好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

修改输入框placeholder文字默认颜色-webkit-input-placeholder_ht

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

查看更多关于修改输入框placeholder文字默认颜色-webkit-input-placeholder_ht的详细内容...

  阅读:30次