1
My goal would be for an image in . png to be above an image . jpg when passing the cursor over it. I tried with the following code:
.image{
width: 320px;
height: 180px;
}
.image:hover{
content: url('playplay.png');
}
But it looks like this
When passing the cursor the jpg image disappears being replaced by png, but my goal was to have the play button on the image. The images are exactly the same size and will be in this layout (4 aligned horizontally)
Add your html to the question.
– Leandro Angelo