I have a strip with pictures that I want to hover over them,and text pops beneath the picture with what the picture is.
I think there is a problem with the CSS. And if you can do it maybe try to get the transition to work too.
Here is the CSS and HTML :
.procat{
background-color: #555555;
padding-top: 15px;
padding-bottom: 15px;
}
.procat img{
margin-left: 20px;
margin-right: 20px;
}
.procath{
display: none;
transition: 1s;
}
.procath a.procath:hover{
display: block;
transition: 1s;
background-color:dimgrey;
}
<div class="procat">
<a class="tb" href="ThunderBird">
<img width="100px" height="100px" src="pic/icons/phone.png">
</a>
<a href="ZeroBook">
<img width="100px" height="100px" src="pic/icons/laptop.png">
</a>
<a href="ProjectTime">
<img width="100px" height="100px" src="pic/icons/car.png">
</a>
<div class="procath">
<h6>
ThunderBird
</h6>
</div>
</div>