Image Map Support In Firefox, Chrome And Other Browsers
Are image maps supported in chrome and firefox? w3schools seems to suggest they are. Given this, why would the following HTML fail? (Image is displayed but no links work - It does
Solution 1:
Try changing <map id="mainImageMap">
to <map name="mainImageMap">
. You can keep the id
if required but just make sure a name
attribute` is there.
Post a Comment for "Image Map Support In Firefox, Chrome And Other Browsers"