Change html5 input placeholder color css
For edit your input placeholder color
Add your html tags :
<input placeholder='hello'/>
<textarea placeholder='hello'></textarea>
And add your selector of placeholder :
::-webkit-input-placeholder {
color: #909;
}
22/08/2020