Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这样的元素<input type="text" placeholder="lorem ipsum">。
<input type="text" placeholder="lorem ipsum">
如何placeholder在 CSS 中设置此属性的样式,使其适用于所有浏览器?
placeholder
输入中的占位符文本(在目前实现它的浏览器中)是浅灰色的。要设置样式,您需要供应商前缀 CSS 属性。
::-webkit-input-placeholder { color: red; } :-moz-placeholder { /* Firefox 18- */ color: red; } ::-moz-placeholder { /* Firefox 19+ */ color: red; } :-ms-input-placeholder { color: red; }
您也可以检查这个非常相似的问题: