有没有办法改变HTML5文本框水印的颜色?
这个问题在这里已经有了答案:
看到这个答案。
长话短说,您需要使用CSS选择器将规则应用于每个浏览器,这对浏览器的处理方式有所不同。
input.mytextbox::-webkit-input-placeholder {
/* WebKit browsers */
color: red;
}
input.mytextbox:-moz-placeholder {
/* Mozilla Firefox 4 to 18 */
color: red;
opacity: 1;
}
input.mytextbox::-moz-placeholder {
/* Mozilla Firefox 19+ */
color: red;
opacity: 1;
}
input.mytextbox:-ms-input-placeholder {
/* Internet Explorer 10+ */
color: red;
}
<input class="mytextbox" type="text" name="mytextbox" placeholder="MyTextBox"/>
链接地址: http://www.djcxy.com/p/12167.html
上一篇: Is there a way to change the color of an HTML5 textbox watermark?