JSFiddle - React, Tailwind, and code Playground

by Avijit Kumar

HTML

<div class="a">
    
    <div class="b"></div>
    <div class="b"></div>
    <div class="clear"></div>
    <//div>

CSS

.a {
    margin: 0 auto;
    background-color: yellow;
    text-align:center;
    display:flex;
    justify-content:center;
}

.clear {
    clear:both;
}
.b {
    width: 100px;
    height: 100px;
    background-color: red;
    float: left;
    margin: 0 10px;
}