TheConeHead
Programmer
what is the easiest way to make a cell act as a link meaning no matter where you click inside the cell it acts as a link....
![[conehead] [conehead] [conehead]](/data/assets/smilies/conehead.gif)
![[conehead] [conehead] [conehead]](/data/assets/smilies/conehead.gif)
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<html>
<head>
<style type="text/css">
td {
margin: 0;
padding: 0;
width: 100px;
line-height: 50px;
border: 1px solid black;
text-align: center;
}
td a {
display: block;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<table>
<tr>
<td><a href="#">Link</a></td>
<td>Test</td>
</tr>
</table>
</body>
</html>