Answers for "how to set button with no color"

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

Code answers related to "how to set button with no color"

Browse Popular Code Answers by Language