visibility

Previous- clip  |  Next-content

Description

The 'visibility' property specifies whether the boxes generated by an element are rendered. Invisible boxes still affect layout (set the 'display' property to 'none' to suppress box generation altogether).


Initial Value : inherit

Applies to : all elements

Inherited : no

Possible Values
visible | hidden | collapse | inherit

Example(s)
#container2 { position: absolute; top: 2in; left: 2in; width: 2in; visibility: hidden; }

Previous- clip  |  Next-content