Currently, I am facing an issue with styling my tables as links. I have 3 tables and I want each table to be a clickable link. However, after implementing the links, I am unable round the corners of the tables.
I envision the final look to be similar to this example: http://jsfiddle.net/vRP63/2/
In one attempt, I added links to each table: http://jsfiddle.net/vRP63/1/
Below is the specific code snippet that seems to be causing the issue:
<a href="google.com">
<table>
<tbody>
<tr>
<td>abc</td>
<td>def</td>
<td>ghi</td>
</tr>
</tbody>
</table>
</a>
Although I was able to achieve the desired functionality using onClick events in JavaScript, I prefer not to use any Javascript for this purpose.