views:

50

answers:

2

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.

A: 

CSS display:inline;

Babiker
A: 

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>
MANnDAaR