Dominik: tabellenzelle als link

Beitrag lesen

Versuch's mal hiermit:

<table>
 <tr onclick="window.location.href='datei.html'">
  <td class="klasse">
   <a href="datei.html">Text</a>
  </td>
 </tr>
</table>

Und im Stylesheet:
tr.klasse{ cursor:pointer; cursor:hand; }
td.klasse:hover { background-color: red; }