Bonjour,
Je n'arrive pas à mettre des figcaptions à mes items .
Voici mon HTML :
Et pour info mes CSS :
Merci pour votre aide
P.
Je n'arrive pas à mettre des figcaptions à mes items .
Voici mon HTML :
<figure>
<div class="grid__item" data-size="1800x1224">
<a href="img/original/Binet.jpg" class="img-wrap"><img src="img/thumbs/BinetL.jpg" alt="img04" /></a>
<figcaption><strong>Neal Adams & Tom Grindberg</strong></figcaption>
</figure>
Et pour info mes CSS :
figure {
position: relative;
display: inline-block;
overflow: hidden;
}
figcaption {
width: 100%;
height: 100%;
position: absolute;
bottom: -100%;
cursor: pointer;
-moz-transition: all .6s;
-webkit-transition: all .6s;
-o-transition: all .6s;
transition: all .6s;
text-align: center;
vertical-align: text-bottom;
color: #fff;
background-color: rgba(0,51,0,0.6);
padding-top: 40px;
font-family: "OpenSans Regular";
}
Merci pour votre aide
P.