You are here : cssCSS 3clear

clear - CSS 3

The clear property specifies on which sides of an element floating elements are not allowed 
to float.


Syntax

clear: none|left|right|both|initial|inherit;


Example

img
	{
	   
	float: left;
	}
	p.clear
	{
	   
	clear: both;
	}


Output / Return Value


Limitations


Alternatives / See Also


Reference