Skip to main content

hide element

Useing css, you can hide an element by setting the display property to none.

<style>
.hidden {
display: none;
}

Or you can use the visibility property to hide an element.

<style>
.hidden {
visibility: hidden;
}