Answers for "how to keep a button colored when you're on the page css"

CSS
1

How to remove the blueish background on a button when clicked

button {
  -webkit-tap-highlight-color: transparent;
}
/* This did it for me */
Posted by: Guest on December-21-2021
3

how change button color in html

<!DOCTYPE html>
<html>
 <body>
  <button style="background-color:red; border-color:blue; color:white">Button 
  Text</button>
 </body>
</html>
Posted by: Guest on October-21-2021
1

change button color html

.button {
  background-color: #4CAF50;
}
Posted by: Guest on May-07-2021

Code answers related to "how to keep a button colored when you're on the page css"

Browse Popular Code Answers by Language