Hi,
i have little problem with my menu bar in css. I've created a list ul,
li,
and i have problem how to revile submenu when i hover over ul list.
here is my code.
ul {
list-style: none;
margin: 0;
padding: 0;
float:left;
position: absolute;
}
li {
position: relative;
float:left;
}
ul ul {
position:relative;
display:none;
}
ul a
{
background: url(background.gif) #fff bottom left repeat-x;
height: 2em;
line-height: 2em;
float: left;
width: 9em;
display: block;
border: 0.1em solid #dcdce9;
color: #0d2474;
text-decoration: none;
text-align: center;
}
li a
{
background: url(background.gif) #fff bottom left repeat-x;
height: 2em;
line-height: 2em;
float: left;
width: 9em;
display: block;
border: 0.1em solid #dcdce9;
color: #0d2474;
text-decoration: none;
text-align: center;
}
li:hover ul{
display: block;
width: 150px;
left: 55px;
top: 0px;
}
i dont know what do do next.
--~--~---------~--~----~------------~-------~--~----~
--
You received this because you are subscribed to the "Design the Web with CSS"
at Google groups.
To post: [email protected]
To unsubscribe: [email protected]
-~----------~----~----~----~------~----~------~--~---