The visibility property lets you control if an element is seen or hidden on the page without changing the layout around it.
Visibility property in CSS
Start learning this pattern below
Jump into concepts and practice - no test required
or
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Introduction
Syntax
CSS
selector {
visibility: visible | hidden | collapse | initial | inherit;
}visible means the element is shown.
hidden means the element is invisible but still takes up space.
Examples
CSS
p {
visibility: visible;
}CSS
div {
visibility: hidden;
}CSS
tr {
visibility: collapse;
}Sample Program
This example shows three boxes stacked vertically. The green box is visible, the red box is hidden but still takes space, and the black border box is visible. You can see the space where the red box is even though you can't see the box itself.
CSS
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>Visibility Property Example</title> <style> .visible-box { width: 8rem; height: 8rem; background-color: #4caf50; visibility: visible; margin-bottom: 1rem; } .hidden-box { width: 8rem; height: 8rem; background-color: #f44336; visibility: hidden; margin-bottom: 1rem; } .border-box { width: 8rem; height: 8rem; border: 2px solid #000; margin-bottom: 1rem; } </style> </head> <body> <div class="visible-box" aria-label="Visible green box"></div> <div class="hidden-box" aria-label="Hidden red box"></div> <div class="border-box" aria-label="Black border box"></div> <p>Notice the red box is invisible but space is still reserved for it.</p> </body> </html>
Important Notes
Unlike display: none;, visibility: hidden; keeps the space reserved on the page.
The collapse value mainly works for table rows and columns, hiding them and removing their space.
Use aria-label or other accessibility features to describe hidden elements if needed.
Summary
The visibility property controls if an element is seen or hidden.
hidden hides the element but keeps its space.
This helps keep page layout stable when hiding elements.
Practice
1. What does the CSS property
visibility: hidden; do to an element on a webpage?easy
Solution
Step 1: Understand the visibility property
Thevisibilityproperty controls whether an element is visible or hidden but does not affect layout space.Step 2: Analyze the effect of
When set tohiddenhidden, the element is not shown but still occupies space on the page.Final Answer:
It hides the element but keeps its space reserved on the page. -> Option BQuick Check:
visibility: hidden hides but keeps space [OK]
Hint: Hidden keeps space, display none removes it [OK]
Common Mistakes:
- Confusing visibility: hidden with display: none
- Thinking hidden elements are clickable
- Assuming hidden elements disappear completely
2. Which of the following is the correct CSS syntax to hide an element but keep its space using the visibility property?
easy
Solution
Step 1: Recall correct CSS property syntax
CSS properties use a colon:between property and value, ending with a semicolon.Step 2: Match syntax to visibility property
The correct syntax isvisibility: hidden;to hide but keep space.Final Answer:
visibility: hidden; -> Option AQuick Check:
Property: value; is correct CSS syntax [OK]
Hint: Use colon, not equals, for CSS properties [OK]
Common Mistakes:
- Using equals sign instead of colon
- Swapping property and value order
- Using non-existent CSS properties
3. Consider this HTML and CSS:
What will you see on the webpage?
<div style="visibility: hidden; background: red; width: 100px; height: 100px;">Box</div>
What will you see on the webpage?
medium
Solution
Step 1: Analyze the visibility property effect
The stylevisibility: hidden;hides the element but keeps its space on the page.Step 2: Understand the visual output
The red box and text are hidden, so nothing is visible, but the space of 100x100 pixels remains empty.Final Answer:
No red box or text, but space is reserved where the box would be. -> Option DQuick Check:
visibility: hidden hides content but keeps space [OK]
Hint: Hidden means invisible but space stays [OK]
Common Mistakes:
- Expecting the box to be visible
- Confusing with display:none which removes space
- Thinking text remains visible
4. You wrote this CSS but the element still shows on the page:
What is the error?
.hidden-box { visibility = hidden; }What is the error?
medium
Solution
Step 1: Check CSS property syntax
CSS uses a colon:to assign values, not an equals sign=.Step 2: Identify the syntax error
The code usesvisibility = hidden;which is invalid syntax and ignored by browsers.Final Answer:
The syntax uses '=' instead of ':'. -> Option AQuick Check:
Use colon for CSS property assignment [OK]
Hint: CSS uses colon, not equals, for properties [OK]
Common Mistakes:
- Using '=' instead of ':' in CSS
- Confusing class selector '.' with id selector '#'
- Assuming 'hidden' is invalid value
5. You want to hide a button but keep the page layout stable so other elements don't move. Which CSS property and value should you use?
hard
Solution
Step 1: Understand layout impact of hiding methods
display: none;removes element and space,opacity: 0;hides visually but keeps clickable,position: absolute; left: -9999px;moves element off screen.Step 2: Choose method that hides but keeps space
visibility: hidden;hides element but keeps its space, keeping layout stable.Final Answer:
visibility: hidden; -> Option CQuick Check:
visibility: hidden hides but keeps space [OK]
Hint: Use visibility hidden to keep space but hide element [OK]
Common Mistakes:
- Using display:none which removes space
- Using opacity:0 but element remains interactive
- Moving element off screen breaks accessibility
