When to Use !important in CSS
Had this really irritating problem where I simply could not seem to change the color of the text to black. Put !important and then it worked.
input, select {
color: black !important;
}
Comments
Post a Comment