Code : Tout sélectionner
onmouseover="this.style.backgroundColor='#FFD2FF';this.style.cursor='hand';" onclick="this.style.backgroundColor='#FFD2FF';this.style.cursor='hand'" onmouseout="this.style.backgroundColor='';this.style.cursor='hand';"Code : Tout sélectionner
onmouseover="this.style.backgroundColor='#FFD2FF';this.style.cursor='hand';" onclick="this.style.backgroundColor='#FFD2FF';this.style.cursor='hand'" onmouseout="this.style.backgroundColor='';this.style.cursor='hand';"Code : Tout sélectionner
<a href="accueil.php" target="mainFrame">
<tr onmouseover="this.style.backgroundColor='#FFD2FF';this.style.cursor='pointer';" onclick="this.style.backgroundColor='#FFD2FF';this.style.cursor='pointer'" onmouseout="this.style.backgroundColor='';this.style.cursor='pointer';">
<td>Accueil</td>
</tr>
</a>
<a href="accueil.php" target="mainFrame">
<tr onmouseover="this.style.backgroundColor='#FFD2FF'; this.style.cursor='pointer';" onclick="this.style.backgroundColor='#FFD2FF'; this.style.cursor='pointer'" onmouseout="this.style.backgroundColor=''; this.style.cursor='pointer';">
<td>Accueil</td>
</tr>
</a>
Tu as mis une balise <a> de part et d'autre d'une balise <tr> : On ne peut trien mettre entre <table> et <tr>, rien non plus entre </tr> et <tr>, c'est hors tableau. La balise <a> peut contenir tu texte ou des images, mais pas de tableau et encore moins une partie de tableau. <tr onmouseover="this.style.backgroundColor='#FFD2FF'; this.style.cursor='pointer';" onclick="this.style.backgroundColor='#FFD2FF'; this.style.cursor='pointer'" onmouseout="this.style.backgroundColor=''; this.style.cursor='pointer';">
<td><a href="accueil.php" target="mainFrame">Accueil</a></td>
</tr>