अधिकतमऊंचाई का प्रयोग करें जावास्क्रिप्ट में संपत्ति अधिकतम ऊंचाई निर्धारित करने के लिए। आप जावास्क्रिप्ट के साथ किसी तत्व की अधिकतम ऊंचाई निर्धारित करने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं -
उदाहरण
<!DOCTYPE html> <html> <head> <style> #box { width: 300px; background-color: gray; overflow: auto; } </style> </head> <body> <p>Click below to set Maximum height.</p> <button type="button" onclick="display()">Max Height</button> <div id="box"> <p>This is a div. This is a div. This is a div.<p> <p>This is a div. This is a div. This is a div.<p> <p>This is a div. This is a div. This is a div.<p> <p>This is a div. This is a div. This is a div.<p> <p>This is a div. This is a div. This is a div.<p> </div> <br> <script> function display() { document.getElementById("box").style.maxHeight = "70px"; } </script> </body> </html>