JSFiddle - React, Tailwind, and code Playground
by orjan
HTML
<div id="content-wrapper">
<div class="red"> </div>
<div class="red"> </div>
<div class="green"></div>
<div class="green"></div>
<div class="green">sdfdsf</div>
<div class="green">sdf sdfsdf</div>
</div>
CSS
.red {
background-color: red;
height: 30px;
width: 30px;
}
.green {
background-color: green;
height: 30px;
width: 30px;
}
JavaScript
$('#content-wrapper div').each(function(i){
if ($( this ).text().trim() == "")
$(this).remove();
});