I know it is possible to link an entire table cell with CSS.
.tableClass td a{ display: block; }
Is there a way to apply a link to an en
Also it depends if you need to use a table element or not. You can imitate a table using CSS and make an A element the row
cell 1 cell 2
css:
.table{display:table;} .tr{display:table-row;} .td{display:table-cell;} .tr:hover{background-color:#ccc;}