1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > CSS设置输入框默认文字颜色(webkit-input-placeholder等)

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

时间:2020-04-22 03:23:35

相关推荐

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

在html5中input,textarea等元素新添加了placeholder的属性,我们可以通过css设置placeholder的样式,对于ie,firefox,以及webkit内核的浏览器需要使用不同的样式写法。

如下测试代码:

<!doctype html>

<html>

<head>

<styletype="text/css">

#myInput::-webkit-input-placeholder {color:red;}

#myInput:-moz-placeholder {color:red;}

#myInput:-ms-input-placeholder {color:red;}​

</style>

</head>

<body>

<inputid='myInput'placeholder='hello'/>

<br>

<textareaid='myInput'placeholder='hello'></textarea>​

</body>

</html>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。