darius wrote:
Quote:
Is there a subtle difference between visibility:hidden vs
display:none ? |
One *could* call it subtle I suppose.
display: none; removes the element from the document flow entirely. It no
longer exists for layout purposes.
visibility: hidden leaves the element in the document flow, causing it to be
layed out, and to take up space, just as if it were visible. It's just not
rendered.
--
Richard.