CSS min-width property
Usage
Specifies a minimum width for an element. Not supported by Internet Explorer.
Values
- [length] - specifies an exact minimum width
- [percentage] - specifies the maximum width as a percentage of the width of the containing element
Example
Code:
div {
min-width: 50%;
}