JSFiddle - React, Tailwind, and code Playground

HTML

<div class="imagecontainer">
<div class="image"></div>
<div class="title">aaaa</div>
</div>

CSS

.imagecontainer{
    position: relative;
    width: 200px;
    height: 300px;
}
.image {
    display: inline-block;
    width: 200px;
    height: 300px;
    background-color: yellow;
}
.title {
    opacity: 0.5;
    position: absolute;
    height: 30px;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: red;
}