The min-width property defines smallest width that an element should have.
min-width: <length> | <percentage> | none | inherit
- <length>
The width is defined by a fixed measure. - <percentage>
The width is defined by a percentage of the containing block's height. - none
No limit on the width of the box. - inherit
The element should have the same min-width setting as the parent.
0
All elements but non-replaced inline elements, table rows, and row groups.
This property is not inherited.
- Visual
A paragraph with a min-width
<p style="min-width: 100px; border:thin solid black;">
This paragraph will not be less than 100 pixels wide.
</p>
- Internet Explorer 6 does not support this property.
- Also remember that setting limits on the size of elements can cause accessibility problems.

