I want to put one image next to the other and when you hover the mouse over it appears a description in a separate column of the site, if there is no way it can be the same since to put an image next to the other and the descriptions do not disfigure the images on the side when you give hover
If you do not give in html can you 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><spanclass="descricao">Recomendado a todas as idades</span>
</span>
<span class="itemdois"><a href="#"><img src="https://i.imgur.com/x4REsTX.jpg"/></a><spanclass="descricaodois">Hoje o dia pode ser seu</span>
</span>
When passing the mouse the description affects the image on the side so I wanted to leave it in a different div or span separated from the image ...