How do I hide the blue border in this picture? Blue border button
Asked
Active
Viewed 4,186 times
2
-
Possible duplicate of [Remove blue border from css custom-styled button in Chrome](https://stackoverflow.com/questions/20340138/remove-blue-border-from-css-custom-styled-button-in-chrome) – Rubenxfd Jul 19 '17 at 12:33
3 Answers
1
This is because of outline
Add this to your css
a:hover,
a:active,
a:focus,
input:hover,
input:active,
input:focus,
button:hover,
button:active,
button:focus {
outline: 0;
}

Dhaval Panchal
- 648
- 6
- 26