Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!doctype html>
<html>
  <head>
    <style>
    span, a {
    color: #fefefe;
    text-decoration: none;
}
.menu {
  display: table;
  width: 100%;
  background: #888;
}
.menu li {
  display: table-cell;
  position: relative;
  background: #444;
     
}
ul.submenu {
        margin-right:20px;
  position: absolute;
  background: #222;
}
ul.submenu li {
  display: block;
  background: transparent;
}
    </style>
  </head>
  <body>
   <div style="width: 650px">
      <ul class="menu">
       <li><span>Selected Menu Item</span></li>
        <li style="width:35%;"><a href="#item" >Another Item with Sub</a>
         <ul class="submenu">
           <li><a href="#sub">Submenu Item</a></li>
           <li><a href="#sub">Submenu Item</a></li>
         </ul>
       </li>
       <li><a href="#item">Another Item</a></li>
       <li><a href="#item">Another Item</a></li>
      </ul>
    </div>
  </body>
</html>
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers