ServiceNow interview question

What is the difference between display:none and visibility:hidden.

Interview Answer

Anonymous

20 Nov 2017

Display:none does not render the element and does not allocate space for it; visibility:hidden does not display the element but still allocates the space it would occupy.

1