I try to align three boxes (divs) in html5/ css3. Two boxes are stacked above each other on the lefthandside, one should be on the righthandside of these two boxes, stretching over the entire height of the two left boxes.
Unfortunately I cannot align the right box with the other two. It always appeary underneeth the left boxes, yet aligned with the right edge of the bracketing div.
These are the css-definitions I am using to position the boxes:
#leftTop {
background-color: green;
color: silver;
width: 32%;
height: 110px;
}
#leftBottom {
background-color: red;
color: yellow;
width: 32%;
height: 540px;
}
#rightAside {
background-color: blue;
color: pink;
width: 60%;
height: 650px;
float:left;;
}
I tried several configurations with Display: inline-block, and the float command. But unfortunalely nothing worked.
Does anybody have an idea? Your answers are highly appreciated!!!