how to change color of checkbox in html code example
Example 1: change highlight color html
::-moz-selection { /* Code for Firefox */
color: red;
background: yellow;
}
::selection {
color: red;
background: yellow;
}
Example 2: how to change the color of a checkbox in html
<style>
#button{
background-color:red
}
</style>
<button id='button' type='checkbox'></button>