2

How do I hide the blue border in this picture? Blue border button

Rahul Sharma
  • 23
  • 1
  • 3
  • 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 Answers3

7

Just add this to the CSS: button:focus {outline:0;}

Kamal Chhirang
  • 490
  • 4
  • 14
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
0

Add following code,

button:focus { 
  outline: none; 
}
Santhoshkumar
  • 780
  • 1
  • 16
  • 36