CSS3 Display other element on hover
问题 I'm here trying to display a list item on hovering an anchor tag. How to affect other elements when a div is hovered - tried using this post but I couldn't succeed. I'm here trying this with only pure CSS. Here's the FIDDLE. And below is the code. HTML : <div class="container"> <div class="menu"> <a class="user" href="#">Brett</a> <ul> <li> <a href="#">Settings</a> </li> <li> <a href="#">Logout</a> </li> </ul> </div> </div> CSS : body { font-size: 50px; } .container { margin-top: 100px;