html - How to force the horizontal scroll bar to appear? -
consider following code:
html:
<div id="wrapper"> <div class='a'></div> <div class='a'></div> <div class='a'></div> <div class='a'></div> <div class='a'></div> </div>
css:
#wrapper { width: 300px; border: 1px solid black; overflow: auto; } .a { width: 70px; height: 70px; border: 1px solid red; float: left; }
how force horizontal scroll bar appear rather displaying red div's in second line ?
try this:
#wrapper { width: 300px; border: 1px solid black; overflow: auto; white-space: nowrap; } .a { width: 70px; height: 70px; border: 1px solid red; display: inline-block; }
it give spacing between inner divs - put them in 1 line remove those.
Comments
Post a Comment