Bonjour
j'aimerais faire un lien sur <span>LIEN</span> .
En gardant bien sur, le contexte actuel.
Quelqu'un peut il m'expliquer la démarche à suivre.
Merci beaucoup
Modifié par Michel (18 Aug 2005 - 00:05)
j'aimerais faire un lien sur <span>LIEN</span> .
En gardant bien sur, le contexte actuel.
Quelqu'un peut il m'expliquer la démarche à suivre.
Merci beaucoup

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<title>Menu Vertical</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
#menu {
margin:0;
padding:0;
height:auto;
overflow:hidden;
background:#f0f0f0;
width:5em;
}
#menu li p{
background-color: #999999;
}
#menu li {
list-style-type:none;
float:left;
display:block;
width:100%;
}
#menu li a {
display:block;
text-decoration:none;
color:#00b;
margin:0;
width:100%;
}
#menu li a span {
display:none;
color:#000;
}
#menu li a:hover {
background:#f1f1f1;
}
#menu li a:hover span {
display:block;
height:5em;
margin:0 10px;
cursor:pointer;
}
#menu .titre {
margin:0 0;
padding:0;
color:#808;
font-size:1em;
border:0;
}
</style>
</head>
<body>
<ul id="menu">
<li>
<a href="#">
<p class="titre">Menu 01</p><br />
<span>lIEN</span>
</a>
</li>
<li>
<a href="#">
<p class="titre">Menu 02</p><br />
<span>lIEN</span>
</a>
</li>
<li>
<a href="#">
<p class="titre">Menu 03</p><br />
<span>LIEN</span>
</a>
</li>
<li>
<a href="#">
<p class="titre">Menu 04</p><br />
<span>LIEN</span>
</a>
</li>
</ul>
</body>
</html>
Modifié par Michel (18 Aug 2005 - 00:05)