PD: Estoy aprendiendo, así que tal vez sea una tontería y la haya cagado, como de costumbre, xD
Código HTML:
Ver original
Código CSS:
Ver original
.caja:first-child { width: 400px; height:300px; float:left; margin: 125px 0px 50px 125px; background-color:red; } .caja:nth-child(2) { float:right; width: 400px; height:300px; margin: 125px 125px 50px 0px; background-color:blue; } .caja:nth-child(3) { float:left; width: 400px; height:300px; margin: 50px 0px 0px 125px; background-color:yellow; } .caja:nth-child(4) { float:right; width: 400px; height:300px; margin: 50px 125px 0px 0px; background-color:black; }