max-width: ***; min-width: ***;
The max-width property specifies the maximum width of an element, and the min-width property specifies the minimum width of an element.
The maximum width and minimum width of the form fields can be specified by applying these properties to the INPUT, TEXTAREA, and SELECT elements.
#example {
max-width: 500px;
min-width: 400px;
}
Property |
Value |
Explanation |
max-width |
length, %, or none |
the size of the maximum width (the default is none) |
min-width |
length or % |
the size of the minimum width |
Example