Hello,
I have a page where dynamic content arranges vertically one below the other.
Content is small boxes & I want to arrange them horizontally next to each other.
How can I achieve this ?
Thanks.
Hello,
I have a page where dynamic content arranges vertically one below the other.
Content is small boxes & I want to arrange them horizontally next to each other.
How can I achieve this ?
Thanks.
Found Solution as Babiker Suggest.
<style type="text/css">
div.inline { float:left; }
.clearBoth { clear:both; }
</style>
<div class="inline">box1 </div>
<div class="inline">box2 </div>
<div class="inline">box3 </div>