Michael Ruther Batoon
Michael Ruther Batoon

Reputation: 13

How to remove the outline of the clicked option in bootstrap-select

Good day ladies and gentlment of stackoverflow. I would just like to ask if how could i remove the blue border when I click the one of the options in my select-bootstrap select tag. enter image description here

Upvotes: 1

Views: 544

Answers (1)

entryton
entryton

Reputation: 290

Try this css:

a, a:active{
    outline: none!important; 
}

Upvotes: 3

Related Questions