JSFiddle - React, Tailwind, and code Playground
by l2banners
HTML
<div class="container">
<div class="block">some message</div>
<button>fldjas</button>
<button>fasdf</button>
</div>
CSS
.container {
display: flex;
max-width: 320px;
height: 100px;
flex-direction: row;
flex-wrap:wrap;
justify-content: center;
background: #ccc;
}
.block {
width: 100%;
text-align: center;
}