MrGuillou,
il y a 15 ans
à tester
<div class="box1">
<div class="box2">
test
</div>
</div>
div.box1{
position:relative;
width:100px;
height:100px;
}
div.box2{
display:none;
position:relative;
width:100px;
height:100px;
}
div.box1:hover .box2 {
display:block;
}