Home → References → CSS Properties →
CSS Property: visibility
Specifies whether a box is visible or not.
HTML Dog is hosted by Titan Internet
Possible Values
inheritvisible(default)hidden- nothing will be visible but unlikedisplay: none, the element and its dimensions will still affect layout.collapse- same ashiddenexcept when applied to rows, row groups, columns or column group boxes, when it should have the same visual representation ofdisplay: nonewhilst maintaining the cell heights or widths that will effect row heights and column widths. Those browsers that "support" this value (IE does not) actually rendercollapsethe same ashiddenno matter what the situation.
Example
p.flummox { visibility: hidden; }

