- I am trying to style the css of the placeholder.
- so I gave color red inside the input class
- but still its not changing.
- I researched and found this link Styling the placeholder in a TextField
- but still no luck
- can you tell me how to fix it.
- providing my code snippet and sandbox below.
https://codesandbox.io/s/material-demo-iw4gr
input: {
marginLeft: 8,
flex: 1,
"&::placeholder": {
// fontSize: '14 !important',
color: "red"
}
},
<InputBase
className={classes.input}
placeholder="Search Google Maps"
inputProps={{ "aria-label": "Search Google Maps" }}
/>