Hey guys,
i was making some thing easy and small and I've made it many times ago,
i want to make Div tag with width 670px and insite it two Div tags as 2 golumns
the left 400px and the right 370px..
<div class="bulb_body">
<div class="left_column">
<p>This is test Pharagraph.</p>
</div>
<div class="right_column">
<p>Content for class "right_column" Goes Here</p>
</div>
</div>
and here is the CSS:
.bulb_body {
width : 670px;
background-image : url(../img/body_bg.jpg);
margin-right : auto;
margin-left : auto;
background-repeat : repeat-y;
}
.bulb_body .left_column {
width: 400px;
float: left;
}
.bulb_body .right_column {
width: 270px;
float: right;
}
when i test the background of the bulb_body Div dont appear :/ ... and when i remove the float: right; from the .bulb_body .right_column the background appear but the right_column centered :/