Bonjour,
Voici mon code :
Mon petit soucis, la colorisation comme les autres colonnes de celle qui contient un lien.
Etant donné que je fixe la couleur du lien en noir "#000000" lorsque la souris est sur la colonne, celui-ci reste en noir.
Merci,
ZiP
Voici mon code :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<title>Tableau</title>
<meta http-equiv="content-style-type" content="text/css" />
<style type="text/css">
body
{
background-color : #FFFFFF;
color : #000000;
font-family : Verdana, sans-serif;
font-size : 11px;
}
#tableau
{
background-color : #FFFFFF;
color : #000000;
}
#tableau a
{
color : #000000;
text-decoration : none;
}
#tableau tr:hover
{
background-color : #00913E;
color : #FFF300;
}
</style>
</head>
<body>
<table id="tableau" cellspacing="0">
<tr>
<td width="150px">CONTENU1</td>
<td width="150px">CONTENU2</td>
<td width="150px">CONTENU3</td>
</tr>
<tr>
<td width="150px"><a href="#">CONTENU1</a></td>
<td width="150px">CONTENU2</td>
<td width="150px">CONTENU3</td>
</tr>
<tr>
<td width="150px">CONTENU1</td>
<td width="150px"><a href="#">CONTENU2</a></td>
<td width="150px">CONTENU3</td>
</tr>
<tr>
<td width="150px">CONTENU1</td>
<td width="150px">CONTENU2</td>
<td width="150px"><a href="#">CONTENU3</a></td>
</tr>
<tr>
<td width="150px">CONTENU1</td>
<td width="150px">CONTENU2</td>
<td width="150px">CONTENU3</td>
</tr>
</table>
</body>
</html>
Mon petit soucis, la colorisation comme les autres colonnes de celle qui contient un lien.
Etant donné que je fixe la couleur du lien en noir "#000000" lorsque la souris est sur la colonne, celui-ci reste en noir.
Merci,
ZiP