Хорошо, я сделал много изменений и включил jquery, но я думаю, что это то, что вы хотите
Итак, мы идем:
<html>
<head>
//Really important, put this if you want the jquery to work
<script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js"></script>
<style>
table.test td
{border:1px solid black;
width: 200px;
height: 40px;}
.cell
{background-color: #FFF5EE;
cursor:pointer;}
.hover
{background-color: #D2691E;}
</style>
<script>
$(document).ready(function() {
//Replace your link and redirect when you click on the cell
$(".cell").click(function() { window.location = 'http:\www.google.lt'});
//Since you can't put a hover class on a td, you have to do it in jquery
$(".cell").hover(function() { $(this).addClass("hover");}, function() {$(this).removeClass("hover");});
});
</script>
</head>
<body>
<table class="test">
<tr>
<td class="cell">Google</td>
<td>Line1</td>
</tr>
<tr>
<td class="cell">Google</td>
<td>Line1<br>Line2<br>Line3</td>
</tr>
</table>
</table>
</body>
И япоместите min-height как высоту в стиле td
Я знаю, что это много изменений, но это работает:)
А вот скрипка: http://jsfiddle.net/d9CGX/
РЕДАКТИРОВАТЬ:
Я обновил скрипку: http://jsfiddle.net/d9CGX/2/ Так что вы можете иметь несколько ссылок