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

angular - DownloadURL return null in below code -

python 2.7 - Given three nested dictionaries, sort the top two nested dictionaries from a value in the innermost dictionary? -