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

CSS를 사용하여 요소의 최소 높이 및 최대 높이 설정

<시간/>

CSS를 사용하여 요소의 최소 높이와 최대 높이를 설정하려면 다음 코드를 실행할 수 있습니다. -

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            max-height: 550px;
            min-height: 450px;
            background-color: red;
         }
      </style>
   </head>
   <body>
      <p> Below is a div with maximum and minimum height. Resize the web browser to see the effect.</p>
      <div>This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text.
      </div>
   </body>
</html>