|
| |||||||||
| Tags: css, div, youtube |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| ||||
| ||||
| Horizontal Scrolling Div in CSS
I try a horizontal scrollbar in a div to get only a horizontal, not vertical. The objects must also horizontal line, which is problematic. I have just as two movies on the youtube page pasted: Code: div # media ( font-weight: bold; margin: 0px 0px 10px 0px; text-align: center; padding: 10px; float: right; height: 410px; width: 490px; background-color: # 000000; text-align: center; overflow: auto; overflow:-MOZ-scrollbars-horizontal; overflow-x: scroll; overflow-y: hidden;) Hopefully someone can help me here. |
|
#2
| ||||
| ||||
| Re: Horizontal Scrolling Div in CSS
Try this it might be a browser issue, actually my div is too wide at the top to display all the time I need to be able to scroll horizontally but the div does not move to see the rest of my div. Code: overflow: auto; overflow-y: hidden; |
|
#3
| ||||
| ||||
| Re: Horizontal Scrolling Div in CSS
CSS should be like this : Code:
#container {
overflow:auto; /* cater to the older browsers */
overflow-x:scroll; /* scroll horizontal */
overflow-y:hidden; /* Hide vertical*/
} |
|
#4
| ||||
| ||||
| Re: Horizontal Scrolling Div in CSS
That looks quite nice sometimes, but seems not to be what I want ultimately construction. I will watch it again but let me detail. |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "Horizontal Scrolling Div in CSS" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to disable horizontal scrolling in Magic mouse | Lalitesh | Hardware Peripherals | 2 | 23-12-2011 10:22 PM |
| horizontal scrolling moves forward and back in Firefox | Sacchidananda | Windows Software | 3 | 13-07-2009 09:01 AM |
| Vertical scrolling...jumps rather than smooth scrolling - Excel 20 | Miller Man | Vista Hardware Devices | 4 | 24-04-2009 08:36 AM |
| disable dynamic horizontal scrolling in Vista | donalmurtagh@yahoo.co.uk | Vista Help | 11 | 27-06-2008 06:14 AM |
| Horizontal Scroll Bar | shayshell07 | Vista Help | 2 | 23-01-2008 05:43 AM |