JSFiddle - React, Tailwind, and code Playground

by scheinercc

HTML

<section>
    <div class="width">
        Test Content
				<div class="sharing">
            <div class="sharingsocial">
                Social Links
            </div>
            <div class="sharingprint">
                Print Link
            </div>
        </div>
    </div>
</section>
<section>
    Footer
</section>

CSS

section{background-color:grey;}
.width{background-color:red;max-width:500px;margin:auto;}

.sharing{max-width:500px;margin:auto; overflow: hidden;}

.sharingsocial{float:left;background:green;}
.sharingprint{float:right;background:yellow;}