JSFiddle - React, Tailwind, and code Playground
by Zireael
HTML
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div style="height:100px;">100px</div>
<div>just lots of breaklines :)<br><br><br><br><br></div>
<div style="height:200px;">200px</div>
CSS
div{background:#eee; margin:3px;}
JavaScript
var total = 0;
$("div").outerHeight(function(i, v){ total += v; });
alert( total );