che ti ha fatto l'absolute?
comunque la risposta è sì e in più di un modo:
<html>
<head>
<title>Ammucchiata</title>
<style type="text/css">
body {background:gray}
.primo {height:400px;
width:400px;
background:red
}
.secondo {height:400px;
width:400px;
background:silver;
margin-top:-300px;
margin-left:100px
}
.terzo {height:400px;
width:400px;
background:fuchsia;
position:relative;
top:-300px;
left:200px
}
</style>
</head>
<body>
<div class="primo">sta sotto</div>
<div class="secondo">gli va sopra</div>
<div class="terzo">così diventa un'ammucchiata</div>
</body>
</html>
![]()

Rispondi quotando