The DOM style maxHeight property returns and modify the maximum height of an element in an HTML document.
Syntax
Following is the syntax −
Returning maxHeight
object.style.maxHeight
Modifying maxHeight
object.style.maxHeight = “value”
Values
Here, value can be −
| Value | Explanation |
|---|---|
| None | It sets no limit on the height of the element. |
| inherit | It inherits this property value from its parent element. |
| initial | It set this property value to its default value. |
| length | It sets the value in terms of length units. |
| percentage(%) | It sets the value in terms of percentage height of parent element. |
Example
Let us see an example of style maxHeight property −
<!DOCTYPE html>
<html>
<head>
<style>
body {
color: #000;
background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%);
height: 100vh;
}
p {
border: 2px solid #fff;
width: 200px;
overflow: auto;
}
.btn {
background: coral;
border: none;
height: 2rem;
border-radius: 2px;
width: 40%;
display: block;
color: #fff;
outline: none;
cursor: pointer;
margin-top: 4rem;
}
</style>
</head>
<body>
<h1>DOM Style maxHeight Property Example</h1>
<p>
This is paragraph 1 with some dummy text.
This is paragraph 1 with some dummy text.
This is paragraph 1 with some dummy text.
This is paragraph 1 with some dummy text.
This is paragraph 1 with some dummy text.
This is paragraph 1 with some dummy text.
</p>
<button onclick="add()" class="btn">Set maxHeight</button>
<script>
function add() {
document.querySelector('p').style.maxHeight = "100px";
}
</script>
</body>
</html>Output
This will produce the following output −

Click on “Set maxHeight” button to set maximum height of paragraph element.
