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 -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -