You are here : cssCSS 3visibility

visibility - CSS 3

The visibility property specifies whether or not an element is visible.Tip: Even invisible elements take up space on the page. Use the 
display property to create invisible elements that do not take up space!


Syntax

visibility: visible|hidden|collapse|initial|inherit;


Example

h2
	{
	   
	visibility: hidden;
	}


Output / Return Value


Limitations


Alternatives / See Also


Reference