Link um |
Link dois |
Link tres |
Observe:
1-) a cor preta no estado "OVER" agora ocupa TODA a célula;
2-) a mudança da cor ocorre quando passa-se o mouse EM QUALQUER LUGAR da célula,
(exceto no IE 6 e anteriores que só está funcionando legal no Link um).
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml" lang="pt-br">
<html>
<head>
<title>Cor de célula com link em tabela</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
body {
color:#039;
background:#f6faff;
font: 12px Arial, Helvetica, sans-serif;
}
a.linque {
display:block;
font: 12px Arial, Helvetica, sans-serif;
color:#00f;
padding:2px 6px;
text-decoration:none
}
a.linque:hover {
color:#fff;
background-color:#000;
}
table { border-collapse:collapse; }
table tr td {
width:100px;
border:1px solid #ccc;
background:#ffe;
}
</style>
</head>
<body>
<table>
<tr>
<td><a class="linque" href="#">Link um</a></td>
</tr>
<tr>
<td><a class="linque" href="#">Link dois</a></td>
</tr>
<tr>
<td><a class="linque" href="#">Link tres</a></td>
</tr>
</table>
</body>
</html>