Complete the code to make the paragraph invisible but still take up space.
p {
visibility: [1];
}The hidden value makes the element invisible but keeps its space on the page.
Complete the code to hide a table row completely, removing it from layout.
tr {
visibility: [1];
}The collapse value hides the table row and removes its space, unlike hidden.
Fix the error in the code to make the element visible again.
.box {
visibility: [1];
}The correct value to make an element visible is visible. Other values either hide or are invalid.
Fill both blanks to hide the element but keep its space, and set its color to gray.
.hidden-text {
visibility: [1];
color: [2];
}Using hidden hides the element but keeps its space. Setting color to gray changes the text color.
Fill all three blanks to hide a table column completely and set its background color to lightblue and text color to white.
td.col-hidden {
visibility: [1];
background-color: [2];
color: [3];
}collapse hides the table column and removes its space. Background color lightblue and text color white style the visible parts.