CSS设置输入框默认文字颜色(webkit-input-placeholder等)

来源:互联网 发布:微信秒杀软件哪个好 编辑:程序博客网 时间:2024/06/05 11:34
在html5中input,textarea等元素新添加了placeholder的属性,我们可以通过css设置placeholder的样式,对于ie,firefox,以及webkit内核的浏览器需要使用不同的样式写法。

如下测试代码:

<!doctype html>
 
<html>
 
<head>
 
<style type="text/css">
 
#myInput::-webkit-input-placeholder { color: red;}
 
#myInput:-moz-placeholder { color: red;}
 
#myInput:-ms-input-placeholder { color: red;}​
 
</style>
 
</head>
 
<body>
 
<input id='myInput' placeholder='hello'/>
 
 <br>
 
<textarea id='myInput' placeholder='hello'></textarea>
 
</body>
 
</html>

​   

阅读全文
0 0