x
 
<!DOCTYPE html>
<html>
<head>
<style> 
#myDIV {
  width: 500px;
  background-color: lightblue;
  overflow: auto;
}
</style>
</head>
<body>
<p>点击“试一试”按钮可确保 DIV 元素的高度永远不会大于 100 像素:</p>
<button onclick="myFunction()">试一试</button>
<div id="myDIV">
  <p>此 DIV 元素没有预定义的高度。</p>
  <p>此 DIV 元素的高度取决于其内容。</p>
  <p>但是如果你点击“试一试”按钮,会确保这个 DIV 元素的高度不超过 100 像素。</p>
</div>
<script>
function myFunction() {
  document.getElementById("myDIV").style.maxHeight = "100px";
}
</script>
</body>
</html>