JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<h1 class="title">My Title</h1>
<div class="box">My Box</div>
<time class="date">My Date</time>
</div>
CSS
.container {
margin: 50px auto;
max-width: 480px;
position: relative;
}
.title {
color: red;
}
.box {
background: blue;
color: white;
margin: 1rem 0;
position: absolute;
}
.date {
color: gray;
}