Only horizontal scrollbars on fixed div (overflow) PDF Print E-mail
Written by Websmurf   
Wednesday, 24 August 2005
The following piece of CSS code displays only horizontal scrollbars for a fixed layer:

.myScrollingDiv{
  height: 400px;
  width: 400px;
  overflow: -moz-scrollbars-vertical;
  overflow-x: none;
  overflow-y: auto;
}


Usage in HTML:

<div class="myScrollingDiv">...</div>

The major disadvantage of this is, that firefox will now always display a vertical scrollbar.


Last Updated ( Wednesday, 24 August 2005 )
 
< Prev   Next >