Answers for "textfield placeholder color"

CSS
8

text input placeholder color react native

<TextInput
   placeholder="something"
   placeholderTextColor="#000" 
/>
// By Ray: https://stackoverflow.com/a/44739397
Posted by: Guest on July-28-2021
2

change placeholder color

textarea::placeholder{
	color: red;
}
Posted by: Guest on September-06-2021

Code answers related to "textfield placeholder color"

Browse Popular Code Answers by Language