JSFiddle - React, Tailwind, and code Playground
by James
HTML
<div class="outer">
<div class="one">
<img src="https://pbs.twimg.com/profile_images/846659478120366082/K-kZVvT8_400x400.jpg" alt="">
</div>
<div class="two">
Click button
</div>
</div>
SCSS
.outer {
background: #ccc;
padding: 16px;
height: 260px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
text-align: center;
margin-bottom: 1.5em;
background-size: cover;
background-position: center;
cursor: pointer;
}
.one {
background-color:#f6bc16;
}
img {
display: block;
margin: 0 auto 8px;
}
.two {
background-color:#0f6cb6;
}