I have an image map:
<map>
<area ..>
<area ..>
</map>
There was an outline showing up in IE so I modified the code to read:
<area onfocus="blur();"
This removed the outline from IE, but now I have an outline when I click on the area in Firefox (version 9.0.1)...
I also tried:
map > area,
map > area:active,
map > area:focus {outline: none; border:0; }
- using the information from this posting...
Any advice would be greatly appreciated.