JSFiddle - React, Tailwind, and code Playground

by Diego Vieira

HTML

<div class="header">PNG</div>

<div class="post">
    <h2>Meu POST <small>Um post qualquer</small></h2>
</div>

CSS

.header {
    width:100%;
    height:80px;
    background:#e1e1e1;
    margin-bottom:20px;
}

.post {
    width:50%;
    padding:10px;
    background:#e1e1e1;
    border-radius:10px;
    margin:0 auto;
}