Could you please review This Demo and provide guidance on how to remove the grey background color when clicking on the button? I attempted the following:
.btn-hallow:hover{
background: none;
color: aliceblue;
}
.btn-hallow.active:focus{
background: none;
}
.btn-hallow:active:focus{
background: none;
}
However, the grey background persists after clicking. Any suggestions on how to resolve this issue?