JSFiddle - React, Tailwind, and code Playground

HTML

<div class="thumbnail">
  <a href='#' id="clickMe">Click me!</a>
</div>

CSS

div {
    width: 200px;
    height: 300px;
    background-color: purple;
    position: relative;
}
a {
    position: absolute;
    color: white;
    bottom: 0px;
}
@media (max-width: 991px) {
    div {
        height: 200px;
    }
}