There is border around button and link when click.
This will also work
a { outline-style:none; }
You can do it with this code:
a:focus{
border: none;
}
CSS outline
is not supported in IE7. That "browser" requires the following CSS expression:
a {
_noFocusLine: expression(this.hideFocus=true);
}
It works also in newer versions.
a:link{ outline-style: none; }`
Try setting the outline property:
a {
outline: 0;
}
Try
a {
outline: none;
}
Always try to use css reset.This will help you to solve the problem like this.I use eric mayer css reset tool.