I need a CSS snippet for hiding a HTML (with quite a lot of contents, including text and other divs), but still reserving space for it.
(with quite a lot of contents, including text and other divs), but still reserving space for it.
use document.getElementById("my").style.display = "none"; do not user visibility it only hide element but in display it remove the space acquired by element.