JavaScript – Change the Height of HTML Element

To change the height of a HTML Element using JavaScript, get reference to this HTML Element element, and assign required height value to the element.style.height property.

In the following example, we will change the height of HTML Element with id "myElement" to "150px", in JavaScript, using element.style.height property.

example.html

ADVERTISEMENT

Conclusion

In this JavaScript Tutorial, we learned how to change the height of a HTML Element using JavaScript.