The min-width property is used to set the minimum width of an element.This prevents the value of the width property from becoming smaller than min-width.Note: The value of the min-width property overrides both max-width and width.
min-width: length|initial|inherit;
p { min-width: 150px; }