Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

จะตั้งค่าความสูงสูงสุดขององค์ประกอบด้วย JavaScript ได้อย่างไร?


ใช้ ความสูงสูงสุด คุณสมบัติใน JavaScript เพื่อกำหนดความสูงสูงสุด คุณสามารถลองเรียกใช้รหัสต่อไปนี้เพื่อกำหนดความสูงสูงสุดขององค์ประกอบด้วย JavaScript -

ตัวอย่าง

<!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>