placeholder color in css
The placeholder color in CSS can be set using the ::placeholder pseudo-element. The syntax for setting the placeholder color is as follows:
input::placeholder {
color: #cccccc;
}
In this example, the placeholder color for all input elements will be set to a light gray color (#cccccc). You can change the color value to any other color of your choice.
原文地址: https://www.cveoy.top/t/topic/dVwZ 著作权归作者所有。请勿转载和采集!