Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
<map name="theMap"> <area alt="Find out more" style="cursor:pointer;" coords="0,0,10,10" shape="rect" href="#"> </map>
Firebugでは、area要素がグレー表示されます。それに影響を与えるCSSスタイルはありません。マップ要素が明確に表示されます。
画像のusemap属性にハッシュを入れていなかったためです。
usemap="theMap"になるはずだったusemap="#theMap"
usemap="theMap"
usemap="#theMap"