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.
::-webkit-input-placeholder{ color: #9A1B1E;}
我想将其与某种 ID 一起使用以将其应用于某些元素,而不是整个页面。我似乎无法将其放在一个组中。
至少使用jquery将它添加为一个类。
谢谢。
.class::-webkit-input-placeholder{ color: #9A1B1E; } #id::-webkit-input-placeholder{ color: #9A1B1E; }
小提琴