I have a table of data and each cell is a link. I want to allow the user to click anywhere in the table cell and have them follow the link. Sometimes the table cells are m
Set an arbitrarily large negative margin and equal padding on the block element and overflow hidden on the parent.
td { overflow: hidden; } td a { display: block; margin: -10em; padding: 10em; }
http://jsfiddle.net/RXHuE/213/