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

Is there a better way to structure post methods in Class Based Views -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -