Click here to Skip to main content
15,895,798 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
please help me to create menu with submenu css and html

i have some menus and sub nenues

eg.

menus are

Home Master Transaction Report

in master menu have some submenus

they are

Bank

Employee

Company

in Transaction Menu have submenus

Employee History

In Employee History have 5 Submenus

they are

Promotion
Progress
Company Transfer
Punishment
Increment

Thanks in advance.........
Posted

 
Share this answer
 
v2
Comments
Member 11105261 4-Mar-15 7:30am    
.sub li
{
display:none;

width:100px;
}


.sub li ul li:hover
{

display:block;
position:absolute;
background:red;
list-style:none;

}

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900