le 14/04/2005 à 18:04
Sh
http://uas.webator.net/sh/index.php
voici ma page web. mon soucis se situe dans le cadre orange du dessus.
je n' arrive pas a centrer mes liens sur la largeur, et je voudrai aussi les centrer en hauteur merci :)
donc mon html :
voici mon css :
merci de m'aider :)
voici ma page web. mon soucis se situe dans le cadre orange du dessus.
je n' arrive pas a centrer mes liens sur la largeur, et je voudrai aussi les centrer en hauteur merci :)
donc mon html :
<div class="menufixe">
<ul class="menu">
<li><a href="./index.php?page=defaut">Accueil</a></li>
<li><a href="./index.php?page=projets">Mes projets</a></li>
<li><a href="./index.php?page=tutos">Mes tutos</a></li>
<li><a href="./index.php?page=about">À propos</a></li></ul>
</ul>
</div>
voici mon css :
.menufixe {
position: absolute;
top: 3px;
left: 38px;
width: 500px;
z-index: 2;
text-align: center;
background-color: #ffecce;
border: 1px solid #666666;
line-height: 1,5em;
height: 1,5em;
margin: 0;
}
html>body .menufixe {
position: fixed
}
.menu li {
float: left;
}
.menu a {
margin: 0 2px;
width: 100px;
height: 20px;
display: block;
text-align: center;
border: 1px solid orange;
text-decoration: none;
color: #000;
background: #fff;
}
.menu a:hover {
background: #ccc;
border: 1px solid orange;
}
.menu a:active {
background: gray;
border: 1px solid orange;
color: #fff;
}
merci de m'aider :)