alors voilà la mise en page de mon site mais regardez le sous IE et firefox http://extremedbzfinaly1.free.fr/haut.php cé parfé sous mozilla et a chié sous IE alors voilà mon CSS:
body
{
width:760px;
margin:auto;
}
- en_tete
{
width:760px;
height:150px;
background-image:url("images/19.jpg");
border:2px solid black;
}
- menu
{
width:260px;
float:right;
}
. element_menu
{
background-color:red;
border:2px solid black;
}
. element_menu a
{
text-decoration:none;
color:blue;
}
. element_menu a:hover
{
color:red;
}
- corps
{
width:500px;
float:left;
}
. element_corps
{
background-color:blue;
border:2px solid black;
}
et mon xhtml
< !DOCTYPE html PUBLIC " -//W3C//DTD XHTML 1.1//EN" " http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
< html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" >
< head>
< title>Mon super site</title>
< meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" / >
< link rel="stylesheet" media="screen" type="text/css" title="Exemple" href="design.css" / >
< /head>
< body>
< !-- L´en-tête -->
< div id="en_tete">
BANNIERE
< /div>
< !-- Les menus -->
< div id="menu">
< div class="element_menu">
< h3>Titre menu</h3>
< ul>
< li><a href="page1.html">Lien</a></li>
< li><a href="page2.html">Lien</a></li>
< li><a href="page3.html">Lien</a></li>
< /ul>
< /div>
< div class="element_menu">
< h3>Titre menu</h3>
< ul>
< li><a href="page4.html">Lien</a></li>
< li><a href="page5.html">Lien</a></li>
< li><a href="page6.html">Lien</a></li>
< /ul>
< /div>
< /div>
< /body>
< /html>
