JSFiddle - React, Tailwind, and code Playground
by DeadByElpy
HTML
<div class="panel">
<div class="content">33333</div>
<footer>123213</footer>
</div>
CSS
.panel {
position: relative;
width: 420px;
height: 200px;
border: 1px solid green;
padding-bottom: 32px;
}
.content {
width: 320px;
margin: 0 auto;
border: 1px solid red;
}
footer {
position: absolute;
width: 100%;
height: 40px;
bottom: 0;
}