0

As you can see in the image, when I click the search button on the right there is an orange border, and I would like to remove it. I have tried the following, but it did not work:

.btn-serch:active{
    background-color: #92949C;
    border:0px solid white;
}

I also tried:

.btn-serch:active{
    background-color: #92949C;
    border:none;
}

enter image description hereenter image description here

Aaron Morefield
  • 952
  • 10
  • 18

2 Answers2

3

Try this

.btn-serch:active{
    background-color: #92949C;
    border:none;
    outline:none;
   }

OR

button:focus {
    border: none;
    outline: none;
}
Rashed Rahat
  • 2,357
  • 2
  • 18
  • 38
0

You'll want to override the outline property

xdumaine
  • 10,096
  • 6
  • 62
  • 103