Computer >> Máy Tính >  >> Lập trình >> CSS

Đặt chiều cao tối thiểu và chiều cao tối đa của một phần tử bằng cách sử dụng CSS

Để đặt chiều cao tối thiểu và chiều cao tối đa của một phần tử bằng CSS, bạn có thể thử chạy mã sau -

Ví dụ

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