I want to place 3 divs side by side using CSS. I have gone through many posts on SO, but not getting the thing working for my project.
#quotescointainer{
width: 100%;
font-size: 12px;
}
#quotesleft{
float:left;
width: 33%;
background-color: white;
}
#quotescenter{
background-color:white;
width: 33%;
}
#quotesright{
float:left;
width: 33%;
}
The above does not place the div’s in the correct place. I cannot seem to figure out the mistake I am making.
You could
float: leftall the innerdivs:http://jsfiddle.net/W8dyy/
You should fix the spelling of
quotescointainertoquotescontainer.