How to count text lines inside of DOM element ? Last Updated : 07 Feb, 2023 Comments Improve Suggest changes 3 Likes Like Report In this article, we will see how to count the number of text lines inside of the DOM element. To count the number of text lines inside the DOM element, we will use the following approach. Obtain the total height of the content inside the DOM element.Obtain the height of one line.By dividing the total height of the content by the height of one line, you get the total number of lines inside the element. Example: This example uses the above approach and prints the number of text lines inside the DOM element. html <h1 style="color: green;"> GeeksForGeeks </h1> <div id="content" style="width: 100%; line-height: 20px"> hello how are you?<br> hello how are you?<br> hello how are you? <br> hello how are you?<br> </div> <button onclick="countLines()"> Count lines </button> <script> // Function to count total // number of lines function countLines() { // Get element with 'content' as id var el = document.getElementById('content'); // Get total height of the content var divHeight = el.offsetHeight // object.style.lineHeight, returns // the lineHeight property // height of one line var lineHeight = parseInt(el.style.lineHeight); var lines = divHeight / lineHeight; alert("Lines: " + lines); } </script> Output: How to count text lines inside of DOM element ? Create Quiz Comment R romy421kumari Follow 3 Improve R romy421kumari Follow 3 Improve Article Tags : Web Technologies HTML HTML-DOM Explore HTML BasicsHTML Introduction4 min readHTML Editors4 min readHTML Basics7 min readStructure & ElementsHTML Elements4 min readHTML Attributes7 min readHTML Headings3 min readHTML Paragraphs3 min readHTML Text Formatting4 min readHTML Block and Inline Elements3 min readHTML Charsets4 min readListsHTML Lists3 min readHTML Ordered Lists5 min readHTML Unordered Lists4 min readHTML Description Lists3 min readVisuals & MediaHTML Colors11 min readHTML Links Hyperlinks2 min readHTML Images7 min readHTML Favicon4 min readHTML Video4 min readLayouts & DesignsHTML Tables9 min readHTML Iframes4 min readHTML Layout4 min readHTML File Paths3 min readProjects & Advanced TopicsHTML Forms4 min readHTML5 Semantics5 min readHTML URL Encoding4 min readHTML Responsive Web Design11 min readTop 10 Projects For Beginners To Practice HTML and CSS Skills8 min readTutorial ReferencesHTML Tags - A to Z List5 min readHTML Attributes Complete Reference8 min readHTML Global Attributes5 min readHTML5 Complete Reference8 min readHTML5 MathML Complete Reference3 min readHTML DOM Complete Reference15+ min readHTML DOM Audio/Video Complete Reference2 min readSVG Element Complete Reference5 min readSVG Attribute Complete Reference8 min readSVG Property Complete Reference7 min readHTML Canvas Complete Reference4 min read Like