1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
<html>
<head>
<title></title>
<style type="text/css">
<!--
<style type="text/css">
<!--
.menu{
text-decoration: none;
}
.menu:hover {
background: none;
}
.menu span {
display: none;
}
.menu:hover span {
display: inline;
position: absolute;
top: 25px;
left: 0px;
width: 200px;
height: 20px;
background:red;
text-align: left;
color: white;
}
-->
</style>
</head>
<body>
<a class="menu" href="#">menu général
<span>
<a href="lien1.htm">sous.menu.1</a>
<a href="lien2.htm">sous.menu.2</a>
</span>
</a>
</body>
</html> |
Partager