css - Show another div while li hover -
i have 2 divs first 1 has full of menu li
elements , second 1 has submenu. when hover menu li
should show next div css
li:hover{ //display submenu }
https://jsfiddle.net/yv6pyk7a/
.seconddiv:hover { display:block; } .seconddiv > li:hover { background: #aaa; cursor: pointer; }
just check one. hope solve problem.
Comments
Post a Comment