JSFiddle - React, Tailwind, and code Playground

by Kostia_Ivashchenko

HTML

<div class="div100percents">
    <div class="divMain">
        Content
    </div>
</div>

CSS

.div100percents {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    background: #ffe;
}

.divMain {
    position: relative;
    width: 200px;
    min-height: 100%;
    margin: 0 auto;
    background: #eff;
}

body {margin: 0; padding: 0;}