IE shows Image Map cut out shapes when clicked [closed]
Just in IE when I do map area i can show the cut out of the shape when i clicked on the link(map). Some one know how can i hidde it?
Eriks answer here is already a great hint. I think he meant to have the .map class applied to the image tag.
img.map { outline:none; }
or simply:
img { outline:none; }
try adding this to your map area css style
.map {
outline:none;
}
精彩评论