bonjour,
mon problème c'est que mon tableau ne s'affiche pas du tout!!
http://simplement.new.fr/test/test.html
Voici le code:
Code : CSS
#menu1 {
text-align: center;
margin-left: 0px;
margin-right: 0px;
border:1px;
border-color:black;
border-collapse: collapse;
font-family: Tahoma;
}
#menu1 A:hover {
background-color:#FF9999;
color:#000000;
font-weight: bold;
font-family: Tahoma;
}
#menu1_titre {
background-color: #FF3333;
color:black;
font-family: Candara;
}
Code : HTML <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<title>test</title>
<link rel="stylesheet" href="style/rouge.css" type="text/css"/>
</head>
<body>
<br>
<table align="center">
<tr>
<td id="menu1_titre">
titre titre titre <br>
</td>
</tr>
<tr>
<td id="menu1">
contenu!!!<br>
<br><br><br><br>
</td></tr>
</table>
</body>
</html>

