我正在尝试设置占位符文本,但我似乎无法选择它.如果我的输入是这样的:
<input id="search" class="search-query" placeholder="Placeholder text here" name="" value"">
如何在css中选择占位符文本进行样式设置?
解决方法
::-webkit-input-placeholder { color: red; } :-moz-placeholder { /* Firefox 18- */ color: red; } ::-moz-placeholder { /* Firefox 19+ */ color: red; } :-ms-input-placeholder { color: red; } /* All modern browsers except IE and EDGE */ ::placeholder { color: red }