Anything questions related to styling should go in here.
-
louiegiezer
- Posts: 57
- Joined: Fri Oct 21, 2011 11:31 am
-
Contact:
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 :
<div class='container''>
<div class='class1'>
div1
</div>
<div class='class2'>
div 2
</div>
</div>
.class1 {
float:left;
border:1px solid #000;
}
.class2 {
float: left;
border: 1px solid #000;
}
.container {
clear: both;
border: 1px solid #000;
}
Last edited by
jacek on Sat Oct 22, 2011 12:12 pm, edited 1 time in total.
Reason: code tags...
-
jacek
- Site Admin
- Posts: 3262
- Joined: Thu May 05, 2011 1:45 pm
- Location: UK
-
Contact:
Post
by jacek »
And there is somethign wrong ?