JSFiddle - React, Tailwind, and code Playground

HTML

<section>
            <div></div>
            <div></div>
            <div></div>
            <div></div>
    </section>

CSS

section { font-size: 0; }

div{
	background-color: red;
	width: calc(25% - 40px);
	height: 50px;
	display:inline-block;
    margin:0 20px;
      font-size: 16px;
}