height
line-height
max-height
max-width
min-height
width
PROPERTY: min-width
min-width
:
length
|
percentage
Compatibility:
Currently not supported by any browser
Version:
Level 2
Inherited:
No
The
min-width
property is used to set the minimum width of an element. Other properties can be used to set the height, width, maximum height, maximum width, and the minimum height.
If a specified value for
max-width
is less than a previously specified value for
min-width
for the same element, then
max-width
is set to the value of
min-width
. If the specified value for
min-width
is greater than the
width
value for the same element, then
width
is set to the value of
min-width
.
length
The
length
value specifies the minimum width of the element and can be in any of the following seven units. Use the abbreviation.
Length
Abbrev.
centimeters
cm
ems
em
inches
in
millimeters
mm
picas
pc
pixels
px
points
pt
percentage
The
percentage
value specifies the width of the element as a percentage of the width of the containing block (i.e., the block that contains the element). It is a positive integer number. The percent sign is mandatory.
Code:
p {min-width: 94px;}
p {min-width: 150%;}
Copyright 1999-2001 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information