The min-height property is used to set the minimum height of an element.This prevents the value of the height property from becoming smaller than min-height.Note: The value of the min-height property overrides both max-height and height.
min-height: length|initial|inherit;
p { min-height: 100px; }