占位符与深色文本(不是微弱)

时间:2012-04-24 12:06:36

标签: html html5

寻找一个带有深色文本的占位符,而不是默认html中的那个。

1 个答案:

答案 0 :(得分:3)

使用HTML5占位符属性(浏览器支持:http://caniuse.com/#search=placeholder

<input type=text placeholder="I am a placeholder">

并按照此处描述的样式:

Change an HTML5 input's placeholder color with CSS

input::-webkit-input-placeholder {
    color: black;
}