2 звучит ужасно сложно. Как насчет этого:
tr:hover td{ outline: red solid 3px}
EDIT
Попробуйте это:
<script type="text/javascript">
$(document).ready(function(){
$("tr").hover(
function(){
$(this).css({"outline":"red solid 3px"});
},
function(){
$(this).css({"outline":"red solid 0px"});
}
);
});
</script>
Упс .. это все равно не работает в вебките.
EDIT
ОК, попробуйте еще раз ...
Webkit соблюдает TR OUTLINE , если вы дадите TR "display: block", то есть работает следующее:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
<title>Test</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<style type="text/css">
table {
}
tr {
outline-color: #f00;
outline-style: solid;
outline-width: 0px;
display: block
}
.thick {
outline-width:3px;
}
</style>
<script type="text/javascript">
$(document).ready(function(){
$("td").hover(
function(){
$(this).parent().addClass("thick");
},
function(){
$(this).parent().removeClass("thick");
}
);
});
</script>
</head>
<body>
<table style="margin:10px;width:800px">
<tbody>
<tr>
<td>Test 1</td>
<td>Test 2</td>
</tr>
<tr>
<td>Test 3</td>
<td>Test 4</td>
</tr>
</tbody>
</table>
</body>
</html>