JSFiddle - React, Tailwind, and code Playground

by sapioit

HTML

<body>
<div id="wrap">
   <div id="content">
   This will be centered
   </div>
</div>
</body>

CSS

#wrap {
    float: left;
    position: relative;
    left: 50%;
}

#content {
    float: left;
    position: relative;
    left: -50%;
    /* -» [Strictly for demo purposes].begin «- */
    background: #def;
    line-height:25px;
    font-size: 20px;
    /* -» [Strictly for demo purposes].end «- */
}