horizontal scrolling div

Maljonic

Can't get enough of FH
Joined
Dec 22, 2003
Messages
1,297
Is it possible to get a div to scroll sideways instead of vertically like when you use overflow: auto; ?
 

Maljonic

Can't get enough of FH
Joined
Dec 22, 2003
Messages
1,297
That's what I thought, I think I may be messing it up by have other divs with float left inside the div I want to scroll.
 

Shovel

Can't get enough of FH
Joined
Dec 22, 2003
Messages
1,350
Code:
overflow-x: scroll; /* for horizontal */
overflow-y: scroll; /* for vertical */

Always include a generic overflow as well though, because the x and y variants are part of CSS3 so browser coverage isn't thorough yet. IE6 and Firefox 1.5 definitely have it though.
 

Users who are viewing this thread

Top Bottom