JSFiddle - React, Tailwind, and code Playground

HTML

<div id="shape">
	<div>1</div>
	<div>2</div>
	<div>3</div>
	<div>4</div>
	<div>5</div>
</div>

CSS

#shape > div{
    background-color:red;
    margin-bottom:10px;
    text-align:center;
    padding:6px;
    color:#fff;
}