I have a jQuery mobile app. This application has one button that I need to give a special color.
In other words, there is only one button in this application that uses this color. I need to install it through CSS.
I currently have the following:
<input type="button" value="My Button" style="background-color:#00ff21;" />
This approach changes the color of the button. However, the color fades. At first I did not believe, so I tried:
<input type="button" value="My Button" style="background-color:yellow;" />
It is very clear that the color of the button is pale. How to set the color of the button so that it does not disappear?
source share