CSS and HTML nav bar menu item -


i having problem getting menu items reappear in css , html. first 2 line of css code below, "display none", hides menu items, in want. however, second code not make menu items appear again when mouse hovering on menu. on appreciated.

      ul li ul li ul li{      display:none;        }      ul li ul li:hover {      background: #696630;      display:block; !important;      } 

the item want reappear li's nested further down, ensure hover on parent, element style correct child.

ul li ul li ul li {  display: none; }  ul li ul li:hover ul li {  display: block; } 

Comments

Popular posts from this blog

meteor - inserting data to database gives error "insert failed: Method '/texts/insert' not found" -

angular - DownloadURL return null in below code -