JSFiddle - React, Tailwind, and code Playground

HTML

<div id="the-content">
  こんにちは、
  <div class="space" data-space="3"></div>
  今日はこんなことがありました
</div>

JavaScript

(function($) {
  $(function() {
    $("#the-content").find(".space").each(function() {
      var h = $(this).data("space");
      $(this).css({
        height: h + "em"
      });
    });
  });
})(jQuery);