JSFiddle - React, Tailwind, and code Playground

by kimgysen

HTML

<div id='innerPageWrapper'>
    <p>This is just some text to test it out</p>
</div>

CSS

#innerPageWrapper {
    width:auto;
    height:auto;
    background:red;
}

#innerPageWrapper p{
    width: 100px;
    height: autopx;
    margin: 10px auto;
    background: yellow;
}