JSFiddle - React, Tailwind, and code Playground

by jorgeluis

HTML

<div class="table">
    <form action="#" class="tbody">
        <div class="row">
            <div class="cell">
                <input type="text" />
            </div>
            <div class="cell">
                <input type="text" />
            </div>
            <div class="cell">
                <input type="text" />
            </div>
        </div>
    </form>
    <form action="#" class="tbody">
        <div class="row">
            <div class="cell">
                <input type="text" />
            </div>
            <div class="cell">
                <input type="text" />
            </div>
            <div class="cell">
                <input type="text" />
            </div>
        </div>
    </form>
</div>

CSS

.table {
    display: table;
    width: 100%;
    border-collapse: collapse;
}
.tbody {
    display: table-row-group;
    width: 100%;
}
.row {
    display: table-row;
}
.cell {
    display: table-cell;
    border: 1px solid red;
}
.cell input {
    margin: 0;
    display: block;
    border: 0;
    width: 100%;
    text-align: right;
}