vetinari: image map in css definieren?

Beitrag lesen

hi,

bei meinen alten websites habe ich eine image-map nach folgenden muster in eine tabelle eingebunden:

<table>
  <tr>
    <td>
      <map name="Map">
        <img src="images/bild.jpg" width="1000" border="0" height="160" alt="" title="" usemap="#Map" />
        <area shape="rect" coords="780,20,885,85" href="formular_heft.php">
        <area shape="rect" coords="890,70,995,135" href="formular_abo.php">
      </map>
    </td>
  </tr>
</table>

jetzt definiere ich das bild in der css:

div#top {
    background-image: url(images/bild.jpg);
    background-repeat: no-repeat;
    width: 1000px;
    min-height: 187px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    padding-top: 154px;
}

wo kann ich jetzt meine image-map definition einbinden - in der dirkt im div#top der css oder irgendwo im body des html codes?

gruss, martin