JSFiddle - React, Tailwind, and code Playground
by Kai_Draord
HTML
<script src="//code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<link rel="stylesheet" href="//stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>
<script src="//stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<div class="container">
<div class="row">
<div class="col-12">
<table class="table table-condensed custom-table">
<thead>
<th>Col 1</th>
<th>Col 2</th>
<th>Col 3</th>
</thead>
<tbody>
<tr>
<td>Lengthy cell with lots of text</td>
<td>2</td>
<td>3</td>
</tr>
</tbody>
<tfoot class="position-bottom">
<tr>
<th><input type="text"></th>
<th><input type="text"></th>
<th><input type="text"></th>
</tr>
</tfoot>
</table>
</div>
</div>
</div>
CSS
.custom-table{
position:relative;
}
.position-bottom{
position:absolute;
bottom:0px;
left:0px;
}
.add-space{
padding-bottom:50px;
}