JSFiddle - React, Tailwind, and code Playground

HTML

<article id="articlebottom">
    <div class="products">
        <div class="imgWrap">
            <img src="http://t0.gstatic.com/images?q=tbn:ANd9GcTA1uJ8WQ7fiJ2cbdoMph39XIJYQztt6FWoxfkk32gwnOz0qcmjyg" alt="candle" />
            <p class="imgDescription">Camphor</p>
        </div>
        <div class="imgWrap">
            <img src="http://t0.gstatic.com/images?q=tbn:ANd9GcTA1uJ8WQ7fiJ2cbdoMph39XIJYQztt6FWoxfkk32gwnOz0qcmjyg" alt="candle" />
            <p class="imgDescription">Camphor</p>
        </div>
        <div class="imgWrap">
            <img src="http://t0.gstatic.com/images?q=tbn:ANd9GcTA1uJ8WQ7fiJ2cbdoMph39XIJYQztt6FWoxfkk32gwnOz0qcmjyg" alt="candle" />
            <p class="imgDescription">Camphor</p>
        </div>
    </div>
</article>

CSS

*{
    padding:0;
    margin:0;
}
#articlebottom {
    width: 980px;
    height: 300px;          
}

.products{
    width:980px;
    margin:0px auto;
    padding-left:20px;
} 
#articlebottom .imgWrap {
    width:295px;
    height:200px;
    position:relative;
    float:left;
    margin:10px;
    background:black;
}
#articlebottom .imgWrap img {
    position:absolute;
    left:5px;
    top:5px;
    width:285px;
    height:190px;
}

#articlebottom .imgDescription {
    position: absolute;
    top:35px;
    left:0;
    letter-spacing: 2px;
    background-color: rgba(255, 250, 250, 0.2);
    color: #1b9bff;
    font-weight:bold;
    font-size:18pt;
    line-height: 50px;
    width:100%;
    height:50px;
    opacity: 1;
    text-align:center;
    visibility: hidden;
    opacity: 100;
    text-transform:uppercase;
    /*-webkit-transition: visibility opacity 0.2s;*/
}
#articlebottom .imgWrap:hover .imgDescription {
    visibility: visible;
    
}