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.
div {
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