my button has this weird border appearing when clicking on it. how to remove it? below is the html and image example
Buy Now Only While Supplies Last
Just set your button outline to none:
input[type="button"]{
outline:none;
}
input[type="button"]::-moz-focus-inner {
border: 0;
}
It's just an outline. You can rid it out by using:
button: {
outline: none;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With