2
I want to put an image next to each other and when you hover the mouse on top appears a description in a separate column of the site, in case there is no way it can be the same as long as to place an image next to each other and the descriptions do not disfigure the images next to the :Hover
if it doesn’t give in html can help me in javascript... CSS q to using:
.descricao, descricaodois{
display: none;
}
.item:hover .descricao, .itemdois:hover .descricaodois{
display: block;
}
html:
<span class="item"><a href="#"><img src="https://i.imgur.com/8sBmNaN.jpg"/></a>
<span class="descricao">Recomendado a todas as idades</span>
</span>
<span class="itemdois"><a href="#"><img src="https://i.imgur.com/x4REsTX.jpg"/></a>
<span class="descricaodois">Hoje o dia pode ser seu</span>
</span>
when hovering the mouse the description affects the image on the side so wanted to leave in a different div or span separate from the image...