css - html Map not working in IE -
for reason, image map not working (partially) in ie.
for e.g. in code, first link mapmap2
working lower 1 mapmap
not working in ie.
any idea?
html
<div class="hero"> <div class="container_12"> <div class="grid_10 prefix_1 suffix_1"> <img name="home001_r2_c1" src="images/ndm-head.jpg" width="1100" height="491" id="home001_r2_c1" alt="" border="0" usemap="#mapmap2"/> <map name="mapmap2" id="mapmap"> <area shape="rect" coords="51,46,443,207" href="index.html" /> </map> </div> </div> </div> <div class="masonry" role="main"> <div class="lower-body"><img name="home001_r2_c2" src="images/home.jpg" width="1100" height="1219" id="home001_r2_c2" alt="" border="0" usemap="#mapmap"/> <map name="mapmap" id="mapmap"> <area shape="rect" coords="53,1117,147,1150" href="index.html" /> <area shape="rect" coords="150,1113,321,1149" href="c4p.html" /> </map> </div> </div>
don't use 2 map id's. change first map's id mapmap mapmap2 , see if works.
Comments
Post a Comment