JSFiddle - React, Tailwind, and code Playground

by id10922606

HTML

<div>Purchase Requisition to Purchase Order related queries</div>

CSS

div {width:150px; border:solid 1px red; line-height:15px; padding:10px 0; font-size:14px; height:22px;}

JavaScript

$(document).ready(function() {
   var fullHeight = $("div").outerHeight();
  	var divheight = $("div").height(); 
	var lineheight = $("div").css('line-height').replace("px","");
    
	alert(Math.round(divheight/parseInt(lineheight)));
    alert(fullHeight);
});