Visibility

The visibility property specifies whether or not an element is visible. But unlike setting 'display' to 'none', if you set 'visibility' to 'hidden' the hidden element will still take up the same space on the page - it just won't be visible.

Value Description
visibleThe element is visible. This is default
hiddenThe element is invisible (but still takes up space)
collapseOnly for table elements. collapse removes a row or column, but it does not affect the table layout. The space taken up by the row or column will be available for other content. If collapse is used on other elements, it renders as 'hidden'

Themeover CSS Reference

Close