样式文本输入占位符
可能重复:
使用CSS更改输入的HTML5占位符颜色
无论如何要在文本输入中设置占位符的颜色? 现在我陷入了无聊的默认灰色。
你确定可以http://css-tricks.com/snippets/css/style-placeholder-text/。
(从上面的文章)
::-webkit-input-placeholder {
color: red;
}
:-moz-placeholder { /* Firefox 18- */
color: red;
}
::-moz-placeholder { /* Firefox 19+ */
color: red;
}
:-ms-input-placeholder {
color: red;
}
或者查看MDN https://developer.mozilla.org/en-US/docs/CSS/:-moz-placeholder
链接地址: http://www.djcxy.com/p/12153.html上一篇: Style text input placeholder
下一篇: Styling the placeholder of an input, how can I do this?