JSFiddle - React, Tailwind, and code Playground
by joshmoto
HTML
<div class="container">
<div class="flex">
<div class="product">
<img src="https://i.imgur.com/1BXKfbX.png" alt="" />
<h1>Journey to the center</h1>
</div>
</div>
</div>
CSS
.container {
padding: 1rem;
}
.flexbox {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.product {
}