JSFiddle - React, Tailwind, and code Playground

HTML

<div>Regular div</div>
<br>
<div class="clearDiv">clearDiv</div>

CSS

div:not(.clearDiv), .exceptDiv, .bigDiv {
    display: inline-block;
    height: 90px;
    width: 150px;
    background-color: #b200ff;
    color: #00ff00;
    /*margin:0;
    padding:0;*/
    margin-bottom: 10px;
    /**the default margin is 5px*/
    margin-right: 5px;
}