최소 높이 속성 상자의 최소 높이를 설정하는 데 사용됩니다. min-height 속성의 값은 숫자, 길이 또는 백분율이 될 수 있습니다.
예시
<html> <head> </head> <body> <p style = "width:400px; min-height:150px; border:1px solid blue; padding:5px; margin:10px;"> This paragraph is 400px wide and min height is 150px This paragraph is 400px wide and min height is 150px This paragraph is 400px wide and min height is 150px This paragraph is 400px wide and min height is 150px </p> <img alt = "logo" src = "/css/images/logo.png" width = "100" height = "100" /> </body> </html>