My objective is to have each article added to the container div, "inlineExample", load to the right without any vertical overflow. The CSS should be able to handle each additional article dynamically as they are added to the right.
<div id="inlineExample">
<article>block 1</article>
<article>block 2</article>
<article>block 3</article>
<article>block 4</article>
</div>
The desired outcome is to have: block1 block2 block 3 block4, all displayed inline with overflow only in the horizontal direction and not below in the vertical direction. You can view an example on Jsfiddle: http://jsfiddle.net/fmbe6/
I am open to any solution as I am currently developing in ASP.NET MVC.