I have a table where I want to fix the height to larger than the default value (for aesthetic reasons), the problem is : the links are only active for the text area and not the entire height. I already have it as display: block ...any help?
.myTable {border-collapse: collapse; text-align:center;float:none;
border: 10px #ccc solid;
}
.myTable td { width:150px ;height:80px;background:#55ddff; }
.myTable td a {display: block; }
and this is the html body:
<table class="myTable">
<TR><TD><a href="">hello</a></TD></TR>
<TR><TD><a href="">hello</a></TD></TR>
<TR><TD><a href="">hello</a></TD></TR>
</table>