ServiceNow Interview Question

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

Interview Answer

Anonymous

Nov 20, 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