The max-width property is used to set the maximum width of an element.This prevents the value of the width property from becoming larger than max-width.Note: The value of the max-width property overrides width.
max-width: none|length|initial|inherit;
p { max-width: 100px; }