What fresh hell is THIS now? - Patrick Lauke
the only difference between
display: none
andvisibility; hidden
is that display: none takes it out of the flow.
Note that unlike display:none
, visibility:hidden
does not guarantee that children of the node are hidden
visibility:hidden
can be made visible via visibility:visible
. There is no such thing with display:none