JSFiddle - React, Tailwind, and code Playground

by Ilia Lesnykh

HTML

<div class="container">
    <image src="http://www.blijdhove-binnenhof.be/school/dp/upload/images/nieuwsfotos/UPLOAD_1453_23_09_2009_bonen.jpg" width="200" height="80" />
    <div class="watermark">© Aliance</div>
</div>

CSS

.container {
    position: relative;
    width: 200px;
    height: 80px;
}
.watermark {
    position: absolute;
    bottom: 0;
    width: 200px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    background-color: rgba(0, 0, 0, .5);
    color: #fff;
    text-shadow: 2px 2px 2px #000;
}