Following is the code in the custom.css file, which is an external css in within of html page.
button {
cursor: pointer;
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
border: none;
padding: 0;
margin: 0;
background: none;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
I want to override it with my own style. I tried the followig in HTML, but it did not work:
<style> .myButton {background-color:initial; } </style>
<button class="myButton">Add</button>
Any Sugesstions ?