Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 9th, 2012  |  syntax: None  |  size: 0.56 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Creating a three-column navigation menu. Having trouble with valid structuring that allows independent scrolling
  2. <ul class="all departments">
  3.     <li class="first department">
  4.         <ul class="all courses in department">
  5.             <li class="first course">
  6.                 <ul class="all sections on course">
  7.                   <li class="first section"></li>
  8.                 </ul>
  9.             </li>
  10.         </ul>
  11.     </li>
  12. </ul>
  13.        
  14. div.columncont
  15. {
  16.  height: 500px;
  17.  width: 600px;
  18. }
  19. div.column
  20. {
  21.  width: 200px;
  22.  float: left;
  23.  height: 100%;
  24.  overflow-y: scroll;
  25. }