I'm trying to make my overlay invisible until I hover over a picture (<img>
):
<div class="channel-picture">
<img class="profile-picture" src="channel-pictures/channel-1.jpeg">
<div class="channel-picture-overlay">
<img class="channel-picture-overlay-image" src="channel-pictures/channel-1.jpeg">
<p class="p1-overlay">
Marques Brownlee
</p>
<p class="p2-overlay">
15M Subscribers
</p>
</div>
</div
I tried to use css; I want to make the overlay invisible until I hover over the channel-picture.
.channel-picture:hover {
/* and here i want to add my overlay to appear */
}