I have a div wrapper, and inside it, i want divs to be side by side. I want the wrapper side to be fixed, so that as more divs are added, they overflow horizontally!!
Also, I want the wrapper width to be fixed! So I do want the posts inside to overflow inside the wrapper!
I want to use a class, so that I have something like
<div id="wrapper">
<div class='post'>Post 1</div>
<div class='post'>Post 2</div>
<div class='post'>Post 3</div>
</div>
How do I do that?! :p
Cheers!!
Are you after something like this?
That makes use of a second
divinside your wrapper: the wrapper itself has a fixed width, andoverflow-xset to scroll: