Ciao, potresti provare ad elaborare un po' questo codice.
Codice html:
codice:
<div id="content">
<div id="sinistra"></div>
<div id="destra1"></div>
<div id="destra2"></div>
</div>
Codice css:
codice:
#content{
margin: 0 auto;
width: 904px;
height: 400px;
border: 1px solid black;
}
#sinistra{
width: 220px;
height: 250px;
border: 1px solid blue;
float: left;
}
#destra1{
width: 680px;
height: 170px;
border: 1px solid green;
float: right;
}
#destra2{
width: 680px;
height: 78px;
border: 1px solid green;
float: right;
}