3 div syde by syde

  • Thread starter Thread starter Lamberti Fabrizio
  • Start date Start date
L

Lamberti Fabrizio

hi all,
I'd like putting insiede a div other 3 div objects syde by side like they
would be 3 cells of a row of a table.

Everything I've tried to do with CSS I've always obtained a DIV with 3 div
one under the other.

Please help me.
 
Assuming that You have the following Structure
<div> DivA </div>
<div> DivB </div>
<div> DivC </div>

Try this CSS Solution
div{border:solid 1px
gray;background-color:#eeeeee;margin-right:10px;float:left;}

Happy Codeing... :-)
 
Back
Top