Multiple choice technology web 2.0

Which CSS property/properties can be used to hide an element from a webpage?

  1. display

  2. view

  3. visibility

  4. z-index

Reveal answer Fill a bubble to check yourself
A,C Correct answer
Explanation

Two main CSS properties can hide elements: display:none removes the element completely from the layout, while visibility:hidden hides it visually but maintains its space in the layout. Options A and C are both correct. The 'view' property doesn't exist, and z-index only controls stacking order.