Menu

CSS TUTORIALS - CSS - Visibility

CSS - Visibility

ADVERTISEMENTS

ValueDescription
visibleThe box and its contents are shown to the user.
hiddenThe box and its content are made invisible, although they still affect the layout of the page.
collapseThis is for use only with dynamic table columns and row effects.

ADVERTISEMENTS


<p>
This paragraph should be visible in normal way.
</p>
<p style="visibility:hidden;">
This paragraph should not be visible.
</p>

ADVERTISEMENTS

This paragraph should be visible in normal way.

This paragraph should not be visible.