You float div are the child of the main wrapper and it float in its parent. Not the wrapper and 'dropzoneContainer'. Also, wrapper and dropzoneContainer has still linebreak and they generate break line around them. So you must float them. Then, you give the wrapper to 380px width. There is 3 wrapper div and dropzoneContainer which has 382px width. So, there is no enough space to appear next to each. Try this:
CSS:
.wrapper
{
width:20%;
height:148px;
margin-bottom:1px;
margin-top:1px;
border:solid 1px black;
float:left;
background:red
}
.dropZone
{
background: green;
height:120px;
width:80px;
float:left;
}
.dropZoneContainer
{
background:blue;
height:600px;
width:37%;
float: left
}
Sorry for my English skill and good luck to you.
Reputation Points: 120
Solved Threads: 133
Practically a Master Poster
Offline 620 posts
since Jan 2009