You are here : cssCSS 3min-width

min-width - CSS 3

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.


Syntax

min-width: length|initial|inherit;


Example

p
	{
	   
	min-width: 150px;
	}


Output / Return Value


Limitations


Alternatives / See Also


Reference