Skip to main content

Command Palette

Search for a command to run...

CSS Trick: Display: none; Vs Visibility: hidden;

Published
1 min readView as Markdown

There is a decent and understandable difference between CSS property of Display: none; Vs Visibility: hidden; Although in both cases the target field will not be visible but there are things to consider.

Display: none:

This will hide the DOM property as well as the hidden DOM will not affect the space of itself. Means it completely decoupled from the design aspects.

Visisbility: hidden;

This will hide the DOM, but the space will remain in the place to place the components.