+ 1
Can it be change the color of placeholder??
3 RĂ©ponses
0
Thanks man
+ 5
Yes, it can, with a little sprinkle of CSS:
(html)
<input type = "text" placeholder = "red" />
(css)
input[type=text]::placeholder {
color: red;
}
+ 4
Yes
Check code
https://code.sololearn.com/WF4ID78ddA2g/?ref=app