JSFiddle - React, Tailwind, and code Playground

by Afzaal Ahmad Zeeshan

HTML

<div class="bigger">
    <div>
        Love for all, hatred for none!
    </div>
    <div>
        Love for all, hatred for none!
    </div>
    <div>
        Love for all, hatred for none!
    </div>
    <div>
        Love for all, hatred for none!
    </div>
</div>

CSS

.bigger {
    height: auto;
    overflow: none;
    border: 1px solid #333;
    padding: 5px
}

.bigger div {
    height: 30%;
}