Rowspan h ref entire spanned cell clickable link

montrealian

New Member
I have a table which has spanned rows. When I create an h ref the link is only clickable on the one line I would like to have the link clickable anywhere on that cell.I've tried the following:\[code\]<table><tr><td rowspan=2><a style='display:block; width:100%; height:100%;' href='http://stackoverflow.com/questions/15678658/#'</td><td>Cell 2</td><td>Cell 3</td></tr><tr><td>Cell 4</td><td>Cell 5</td></tr></table>\[/code\]\[code\]<table><tr><td rowspan=2><a style='display:inline-block; width:100%; height:100%;' href='http://stackoverflow.com/questions/15678658/#'</td><td>Cell 2</td><td>Cell 3</td></tr><tr><td>Cell 4</td><td>Cell 5</td></tr></table>\[/code\]Is there a way of getting the link to span both rows?Thanks!Wes
 
Back
Top