InterviewSolution
Saved Bookmarks
| 1. |
What is the default value of visibility?(a) visible(b) hidden(c) initial(d) inherit |
|
Answer» Correct choice is (a) visible To explain I would say: The default value of visibility is visible, the element is visible. When set to hidden, the element is invisible but it still takes up space, initial sets the property to its default value. Inherit inherits this property from its parent element. |
|