div之min-height和max-height
-
max-height
The value of the max-height property overrides height.
min-height
The value of the min-height property overrides both max-height and height.
Default value:0
Inherited:no
Version:CSS2
JavaScript syntax:object.style.minHeight="10px"
Example:
p
{
min-height:100px;
}
==