I have recently started building a website and have started to make buttons on it. However, whenever I click the button, I get a blue border like this !
How should I get rid of this border? Thanks in advance!
I have recently started building a website and have started to make buttons on it. However, whenever I click the button, I get a blue border like this !
How should I get rid of this border? Thanks in advance!
The way to remove this is to add this to the css of the button:
outline: 0;
If you don't want that line anywhere add this to your css:
* {
outline: 0;
}