The CSS min-height and min-width property represents the minimum height and minimum width of an HTML element.
Example of Code
<style>
#example-min-height-and-min-width-Properties-div{
min-height: 150px;
min-width: 75px;
background-color: gold;
}
</style>
<div id="example-min-height-and-min-width-Properties-div">
This div has 'min-height' and 'min-width' applied.
</div>
Output
This div has 'min-height' and 'min-width' applied.