修改input框默认显示的字体颜色
时间:2017-04-01 17:48:21
收藏:0
阅读:564
修改input框默认显示的字体颜色(还可以修改字体大小)

//chrome谷歌浏览器,Safari苹果浏览器
input[name="color"]::-webkit-input-placeholder { /* WebKit browsers */
color: red;
font-size:15px;
}
//firefox火狐浏览器
input[name="color"]:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
color: red;
font-size:15px;
}
input[name="color"]::-moz-placeholder { /* Mozilla Firefox 19+ */
color: red;
font-size:15px;
}
//IE浏览器
input[name="color"]:-ms-input-placeholder { /* Internet Explorer 10+ */
color: red;
font-size:15px;
}
原文:http://www.cnblogs.com/bkyj/p/6656979.html
评论(0)