Div container

Anything questions related to styling should go in here.
Post Reply
User avatar
louiegiezer
Posts: 57
Joined: Fri Oct 21, 2011 11:31 am
Contact:

Div container

Post by louiegiezer »

Hi, I'm making a website, and have some css to put two divs float into container
This is my css and HTML code :

[syntax=xhtml]<div class='container''>
<div class='class1'>
div1
</div>
<div class='class2'>
div 2
</div>
</div>[/syntax]

[syntax=css]
.class1 {
float:left;
border:1px solid #000;

}
.class2 {
float: left;
border: 1px solid #000;
}
.container {
clear: both;
border: 1px solid #000;
}
[/syntax]
Last edited by jacek on Sat Oct 22, 2011 12:12 pm, edited 1 time in total.
Reason: code tags...
User avatar
jacek
Site Admin
Posts: 3262
Joined: Thu May 05, 2011 1:45 pm
Location: UK
Contact:

Re: Div container

Post by jacek »

And there is somethign wrong ?
Image
User avatar
louiegiezer
Posts: 57
Joined: Fri Oct 21, 2011 11:31 am
Contact:

Re: Div container

Post by louiegiezer »

it's ok now jacek thanks..
Post Reply