I have a td that has a link inside of it and I want that link to be clickable anywhere within it's td:
<td><span class='date'><a class='day-link' href='{self.year}-{self.month}-{day}'>{day}</a></span><ul> {d} </ul></td>
I found a way to make the whole width of the td clickable:
td a {
display: block;
width: 100%;
}
But when I go to do the same with the height it shifts everything. Is there a way to fill the entire vertical space of a td using this method or do I need to use a different method?

