Related to opacity are the visibility and display tags
The visibility tag has basically two options: visible and hidden.
Combined with a small JavaScript, visibility can be toggled on and off:
Note that the visibility tag hides the element but does not remove the space that it takes up on the page. The display tag can be used to conceal both.
The display tag can control several display options (inline, block, etc.) but what we're interested here is display:none.
The ability to hide and reveal portions of your Web content opens up a wide range of possibilities for presentation.