Your problem is the :focus, you can get around by doing something like this
span:focus {
outline: none;
border: 0;
}
So this is just for your span, you could get more specific on other items if you wanted to remove it elsewhere.
Your problem is the :focus, you can get around by doing something like this
span:focus {
outline: none;
border: 0;
}
So this is just for your span, you could get more specific on other items if you wanted to remove it elsewhere.