JSFiddle - React, Tailwind, and code Playground
by gugahoi
HTML
<br>
<div class="element">
<p>Lorem Ipsum</p>
<p>Lorem Ipsum</p>
<p>Lorem Ipsum</p>
<p>Lorem Ipsum</p>
<p>Lorem Ipsum</p>
<p>Lorem Ipsum</p>
<p>Lorem Ipsum</p>
</div>
<div class="element">
<p>Lorem Ipsum</p>
<p>Lorem Ipsum</p>
</div>
CSS
.element {
background-color: red;
border: 1px solid blue;
}
JavaScript
$(".element").each(function() {
var height = $(this).height();
height = 0 - height;
$(this).css('margin-bottom', height);
});