Is it possible to wrap entire table rows in tags? I want the the entire row to be a clickable link.
If I try the following, the links get rend
as a link in each td is not a good alternative and using js is a bit dirty, here is another html/css approach:
HTML:
... ... ...
CSS:
.table { display:table; } .table-row { display:table-row; } .table-cell { display:table-cell; }