Middle+
What ways do you know to hide an element in CSS?
sobes.tech AI
Answer from AI
There are several ways to hide an element in CSS:
display: none;— the element is completely removed from the document flow and does not occupy space.visibility: hidden;— the element is hidden but still takes up space.opacity: 0;— the element becomes transparent but remains in place and responds to events.position: absolute; left: -9999px;— the element is moved outside the visible area.- Using
clip-pathorclipto crop the visible part.
Example:
.hidden {
display: none;
}
.invisible {
visibility: hidden;
}
.transparent {
opacity: 0;
}