+ 1
how can i make 3 div box in one row with inline css?
i want to make 3 box with div in one row
2 Answers
+ 1
You can make a class for the boxes with float:left, or if inline style was really needed;
<div style="float:left;">First</div>
<div style="float:left;">Second</div>
<div style="float:left;">Third</div>
Hth, cmiiw
0
Hi Muhammad Abdul Halim,
Why do you want to use inline CSS instead of an internal or external stylesheet?