Bonjour,
j'affiche un menu mis en forme en css
Pour cela j'utilise une liste à puces avec des blocs de 30px de haut
Le seul problème que g'ai est de positionner le texte au centre du bloc verticalement
Si quelqu'un pouvait m'aider
Je met les extraits de code nécessaires
artdentelle.css
Citation :
#menu {
position: absolute;
left: 10px;
width: 150px;
}
.menugauche {
list-style-type: none;
margin: 0;
padding:0;
text-align: center;
}
.menugauche li a {
display: block;
background-color: white;
color: #000000;
height: 30px;
text-decoration: none;
font-size: 10pt;
margin-top: 10px;
margin-bottom: 10px;
}
.menugauche a:hover {
font-weight: bold;
color: #FFFFFF;
background-color: #7D7DFF;
}
|
page.php
Citation :
<html>
<head>
<link href="/artdentelle.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="conteneur">
<div id="menu">
<ul class="menugauche">
<li><a href="?page=noframes/actu.php">Actualités</a></li>
<li><a href="?page=noframes/assoc.php">L'association</a></li>
<li><a href="?page=noframes/historiq.php">Historique de la dentelle aux fuseaux</a></li>
<li><a href="?page=noframes/galerie.php">Galerie photos</a></li>
<li><a href="?page=noframes/colectif.php">Œuvres collectives</a></li>
<li><a href="?page=noframes/liens.php">Liens favoris</a></li>
<li><a href="?page=noframes/contact.php">Nous contacter</a></li>
<p> </p>
<li><a href="?page=noframes/janou.php">La grange à Janou</a></li>
</ul>
</div>
</body>
</html>
|