css - changing textbox color bootstrap from white to Gray -
I am trying to color the text box to white the bootstrap white, like:
texture {color: gray; } But that does not work.
Thank you
I have checked this, like this:
Textera {background color: gray; } and this is a text box for example:
But the texbox remains white.
Use it
textarea {background color: gray! Important; } for the text box
input [type = "text"] {background-color: gray! Important}
Comments
Post a Comment