CSS min-width
Also see the full, alphabetical list of CSS properties
The CSS min-width property is used to constrain the width of an element.
| Syntax: | min-width: <value>; |
| Possible Values: |
|
| Initial Value: | Depends on browser/user agent |
| Applies to: | All elements except non-replaced inline elements and table elements |
| Inherited: | No |
| Media: | Visual |
| Example: |
div { min-width: 10px; }
|
