remove outline on li bootstrap select code example
Example 1: remove underline from link css
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
Example 2: css remove button outline
button:focus {outline:0;}
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
button:focus {outline:0;}