Looking for a solution to align "container-element" divs horizontally without creating a newline?
<div id='container'>
<div class='container-element' id='el0'></div>
<div class='container-element' id='el1'></div>
</div>
The goal is to initially display only element "el0".
Then, upon animating "el0" to the left, I want to reveal "el1".
Visit this link to access my basic fiddle. Any help in finding the right CSS combination would be greatly appreciated.