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

CSS로 상자가 가질 수 있는 최대 높이 설정


최대 높이 속성은 상자가 될 수 있는 최대 높이를 설정하는 데 사용됩니다. max-height 속성의 값은 숫자, 길이 또는 백분율이 될 수 있습니다.

예시

<html>
   <head>
   </head>
   <body>
      <p style = "width:400px; max-height:10px; border:2px solid green; padding:10px; margin:15px;">
         This paragraph is 400px wide and max height is 10px
         This paragraph is 400px wide and max height is 10px
         This paragraph is 400px wide and max height is 10px
         This paragraph is 400px wide and max height is 10px
      </p>
      <br>
      <br>
      <br>
      <img alt = "logo" src = "/css/images/logo.png" width = "210" height = "100" />
   </body>
</html>