CSS div element - how to show horizontal scroll bars only? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T18:45:02Zhttp://stackoverflow.com/feeds/question/258372http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/258372/css-div-element-how-to-show-horizontal-scroll-bars-only8CSS div element - how to show horizontal scroll bars only?Jangwenyi2008-11-03T11:24:57Z2008-11-03T11:38:48Z
<p>I have a div container and have defined its style as follows:</p>
<pre><code>div#tbl-container
{
width: 600px;
overflow: auto;
scrollbar-base-color:#ffeaff
}
</code></pre>
<p>This gives me both horizontal and vertical scroll bars automatically once I populate my table which is contained by this div.
I just want only horizontal scroll bars to appear automatically. I will modify the height of the table programmatically.</p>
<p>How do I do this?</p>
http://stackoverflow.com/questions/258372/css-div-element-how-to-show-horizontal-scroll-bars-only/258379#2583790Answer by Gareth for CSS div element - how to show horizontal scroll bars only?Gareth2008-11-03T11:27:50Z2008-11-03T11:27:50Z<p>CSS3 has the overflow-x property, but I wouldn't expect great support for that. In CSS2 all you can do is set a general scroll policy and work your widths and heights not to mess them up.</p>
http://stackoverflow.com/questions/258372/css-div-element-how-to-show-horizontal-scroll-bars-only/258393#25839314Answer by bobince for CSS div element - how to show horizontal scroll bars only?bobince2008-11-03T11:35:23Z2008-11-03T11:35:23Z<p>You shouldn't get both horizontal and vertical scrollbars unless you make the content large enough to require them.</p>
<p>However you typically do in IE due to a bug. Check in other browsers (Firefox etc.) to find out whether it is in fact only IE that is doing it.</p>
<p>IE6-7 (amongst other browsers) supports the proposed CSS3 extension to set scrollbars independently, which you could use to suppress the vertical scrollbar:</p>
<pre><code>overflow: auto;
overflow-y: hidden;
</code></pre>
<p>You may also need to add for IE8:</p>
<pre><code>-ms-overflow-y: hidden;
</code></pre>
<p>as Microsoft are threatening to move all pre-CR-standard properties into their own ‘-ms’ box in IE8 Standards Mode. (This would have made sense if they'd always done it that way, but is rather an inconvenience for everyone now.)</p>
<p>On the other hand it's entirely possible IE8 will have fixed the bug anyway.</p>
http://stackoverflow.com/questions/258372/css-div-element-how-to-show-horizontal-scroll-bars-only/258400#2584001Answer by Proxify for CSS div element - how to show horizontal scroll bars only?Proxify2008-11-03T11:38:48Z2008-11-03T11:38:48Z<p>you can also make it <code>overflow: auto</code> and give a maximum fixed height and width that way, when the text or whatever is in there, overflows it'll show only the required scrollbar</p>