visibility: ***;
Browser |
|
---|
The visibility property specifies whether an element is visible or invisible.
div {
visibility: hidden;
}
Property | Value | Explanation |
---|---|---|
visibility | visible | the element is visible (default) |
hidden | the element is invisible (however, the area of the element remains) |
Comparison with the display property
The visibility property :
AAAAA<span style="visibility: hidden;">BBBBB</span>CCCCC
AAAAA
CCCCC
The display property :
AAAAA<span style="display: none;">BBBBB</span>CCCCC
AAAAA
CCCCC