Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript로 요소의 최소 높이를 설정하는 방법은 무엇입니까?


minHeight 사용 JavaScript의 속성을 사용하여 최대 높이를 설정합니다. JavaScript로 요소의 최소 높이를 설정하기 위해 다음 코드를 실행할 수 있습니다 -

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         #box {
            width: 300px;
            background-color: gray;
            overflow: auto;
         }
      </style>
   </head>
   <body>
      <p>Click below to set Minimum height.</p>
      <button type="button" onclick="display()">Min 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.minHeight = "400px";
         }
      </script>
   </body>
</html>