The max-width
property defines the maximum width of an element.
max-width: value | none;
.mydiv {
border: 1px solid black;
max-width: 150px;
}
value: sets the given value as the maximum width of the element.
none: sets no maximum height. (default value)