JSFiddle - React, Tailwind, and code Playground

by csaltyj

HTML

<div id="container">
    <div class="box">
        <p>X</p>
        <p>Taller than the other two.</p>
    </div>
    <div class="box">
        <p>&nbsp;&nbsp;&nbsp;Y</p>
    </div>
    <div class="box">
        <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Z</p>
    </div>
</div>

CSS

#container {
    border: 2px solid #000;
    position: absolute;
    width: 20em;
}

.box {
    background: transparent;
    position: absolute;
    border: 1px solid #0f0;
}