页面加载后,神秘的样式属性插入输入类型密码标签!?
Page source:
<input type="password" placeholder="password">
Style sheet:
input:-moz-placeholder {
color: #999999;
}
After Load (Firebug):
<input type="password" placeholder="password" style="font-weight: 500; font-style: normal; color: rgb(0, 0, 0);">
截图,
示例,http://jsfiddle.net/LaxkL/
效果,更改占位符颜色,它恰好 type=password only
受影响的浏览器,Firefox 13+(我在 Mac 上使用的第一个版本)在 Mac OS X 上
问题,我该如何解决这个问题,所以所有输入占位符都具有相同的颜色?