bonjour j'ai un probleme, j'aimerai aligné mon "retour au sommaire" et "mon haut de pages" comment je dois faire?
voila mon html
voila mon css
Modifié par nicolas31 (07 Dec 2008 - 22:07)
voila mon html
<html>
<head>
<title></title>
<meta content="">
<link href="style.css" rel="stylesheet" media="all" type="text/css">
<style></style>
</head>
<body>
<DIV ID="en-tete">
<h1>TOULOUSE,LA VILLE ROSE<h1>
<hr width=900 color="black" align="center"/>
</DIV>
<div id="menu">
<h2><U>SOMMAIRE</U></h2>
<ol>
<li><a href="Situation">Situation</a></li>
<li><a href="Histoire">Histoire</a></li>
<li><a href="Economie">Economie</a></li>
<li><a href="Interets">Interets</a></li>
<li><a href="Sources d'informations">Sources d'informations</a></li>
</ol>
</div>
<div id="corps">
<EMBED SRC="sp happy together.mp3"IDTH =160 HEIGHT =16 CONTROLLER=true LOOP =false AUTOPLAY =false>
</div>
<div id="pied_de_page">
<hr width=900 color="black" align="center"/>
<h4><a href="#top"> haut du document</a></h4>
</div>
</body>
</html>
voila mon css
html {
margin:16;
padding:0;
}
body {
background-color : white;
font-family : Verdana, Arial, Helvetica, Geneva, sans-serif;
}
/* L'en-tête */
#en-tete h1
{
color: pink;
font-family: Arial;
text-align: center;
}
/* Le menu */
#menu h2
{
color: orange;
font-family: Arial;
text-align: center;
}
#menu ol
{
color: green;
padding: 0px;
padding-left: 20px;
margin: 0px;
margin-bottom: 16px;
text-align: left
}
#menu a
{
color: green;
}
#menu a:hover
{
background-color: pink;
color: red;
}
/* Le corps de la page */
#corps h3
{
color: brown;
text-align: left;
font-family: Arial;
}
#corps h4
{
text-align: right;
font-family: Arial;
}
#corps a
{
color: blue;
}
#corps p
{
color: black;
text-align: justify;
}
#corps ol
{
color: blue;
}
#corps table
{
border-width:1px;
border-style:solid;
border-color:black;
width:100%;
border-collapse:collapse;
color:blue;
}
#corps th
{
border-width:1px;
border-style:solid;
border-color:orange;
width:30%;
}
#corps td
{
border-width:1px;
border-style:solid;
border-color:green;
width:30%;
}
/* Le pied de page */
#pied_de_page h4
{
text-align: right;
font-family: Arial;
}
#pied_de_page a
{
color: blue;
}
a:link {color: black; text-decoration:none;}
a:visited {color: black; text-decoration:none;}
a:hover {color:red; text-decoration:none;}
Modifié par nicolas31 (07 Dec 2008 - 22:07)