Borders on Hyperlinks
Some browsers link to display a dotted line around the border of hotspots once you have clicked them. You can use the following CSS to hide them.
a {
outline-style:none;
outline-width:0;
}
Borders on Hotspots
Some browsers link to display a dotted line around the border of hotspots once you have clicked them. You can use the following CSS to hide them.
area {
outline-style:none;
outline-width:0;
}