JSFiddle - React, Tailwind, and code Playground

by Vignesh Gopalakrishnan

HTML

<div class="geoJsonMappingContainer">
    <div class="geoJsonLeft_col">
       GeoJson Mapped
    </div>
    <div class="geoJsonright_col">
        Attributes Mapped
    </div>
</div>
<div class="geoJsonMappingContainer"> <div class="geoJsonLeft_col"> GeoJson Mapped </div> <div class="geoJsonright_col"> Attributes Mapped </div> </div>

CSS

.geoJsonMappingContainer {
   width:600px;
   margin:0 auto;
}
.geoJsonLeft_col {
   float:left;
   width:300px;
}
.geoJsonright_col {
   float:right;
   width:300px;
}