I have a styled button on my website. But when I click it, it creates an unwanted border or outline (I don\'t know which). How can I remove that border? Below is all the code th
It's an outline. Use outline:none; on :focus pseudo-class to remove it. Worked well for me.
outline:none;