Here is the code from the custom.css file, an external CSS within an 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 am looking to customize this style. I attempted the following code in HTML, but it was not successful:
<style> .myButton {background-color:initial; } </style>
<button class="myButton">Add</button>
Any recommendations?