La prossima volta ti invito a postare il codice con il suo tag [code]
Grazie
Questo è il codice funzionante come tu vuoi:
codice:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Documento senza titolo</title>
<style>
#dx {
width:30%;
background-color: yellow;
float:left;
}
#sx{
width:30%;
background-color: red;
float:left;
}
p {
margin: 0;
}
#dx1 {
width:30%;
background-color: yellow;
}
#sx1 {
background-color: red;
float:left;
}
#dx2 {
width:30%;
background-color: yellow;
}
#sx2 {
background-color: red;
float:left;
}
</style>
</head>
<body>
<div id="sx">
<p>Sinistra</p>
</div>
<div id="dx">
<p>destra</p>
</div>
<div style="clear:both;">
</div>
<div id="sx1">
Sinistra 1
</div>
<div id="dx1">
destra 1
</div>
</body>
</html>