The visibility property specifies whether or not an element is visible.Tip: Even invisible elements take up space on the page. Use the display property to create invisible elements that do not take up space!
visibility: visible|hidden|collapse|initial|inherit;
h2 { visibility: hidden; }