I want to create div with overflow effect. here is my code
<div style="width:100%;clear:both;overflow-x:auto">
<div style="width:50%; float:left; background:#ccc;height:200px"></div>
<div style="width:50%; float:left; background:#333;height:200px"></div>
<div style="width:50%; float:left; background:#cc90fc;height:200px"></div>
<div style="width:50%; float:left; background:#000;height:200px"></div>
</div>
i want these div don't come below while overflow, the container div will have a scroll bar, any suggestion.