Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  
  <nav>
    <ul>
      <li>leaf</li>
      <li>hover me
        <ul>
          <li>leaf</li>
          <li>leaf</li>
          <li>leaf</li>
        </ul>
          
      
      </li>
      <li>leaf</li>
      <li>leaf</li>
      <li>leaf</li>
    </ul>
  </nav>
  
</body>
</html>
 
nav li {
 width: 100px;
  background: orange;
  margin: 1px;
  list-style-type: none;
}
nav > ul > li {
 position: relative; 
}
nav li ul {
 position: absolute;
  top: 0;
  right: -110px;
}
nav li:not(:hover) ul { display: none; }
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers