我的网站上有一张图片(路线图)我需要在图片上显示一些标记图标,如Google地图。我的代码是这样的。
<img src="mymap.gif" width="500" height="400" alt="Map" usemap="#map">
<map name="map">
<area shape="rect" coords="0,0,82,126" href="test.htm" alt="test">
<area shape="circle" coords="90,58,3" href="test.htm" alt="test">
<area shape="circle" coords="124,58,8" href="test.htm" alt="test">
</map>
我如何为这种情况写css?
任何人都可以帮助我吗?