JSFiddle - React, Tailwind, and code Playground

by Victor

HTML

<div id="storeFooter">
    <div class="footerSection">
        <p>here is some footer info</p>
        <a href="#">footer link</a>
    </div>
        <div class="footerSection">
        <p>here is some footer info</p>
        <a href="#">footer link</a>
    </div>
        <div class="footerSection">
        <p>here is some footer info</p>
        <a href="#">footer link</a>
    </div>
</div>

CSS

#storeFooter {
    background:red;
    padding:10px;
}
.footerSection {
    width:30%;
    background:green;
    display:inline-block;
    padding:1.3%;
}