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
Please don't remove the outlines on focus-styles, this makes your site less accessible to your keyboard-only and low-vision users.
If you choose to add something like :focus { outline: none; } to your stylesheets, also add you owns styles for focused elements.
:focus { outline: none; }
Reading: Never remove CSS outlines