I'm trying to set my entirely table row as an anchor. I've read here that It's not a good practice to put all table row content inside a anchor tag because the html standard doesn't permit this.
What's the best strategy to accomplish this?
I'm analysing the possibility to put an anchor tag inside each table cell, as I've done on .day div on this example: http://jsfiddle.net/XdfCp/4/ Is this a good solution?
The problem with this solution is that the anchor is not covering all table cell space. I've configured the anchor at this way, but It didn't take all cell space:
#ListaEventosPorMes a{
display: block;
width: 100%;
height: 100%;
color: White;
}
The other behavior I need is to get the hover effect in all row and not on specific table cell anchor. Do you have any idea to resolve this?