visibility : hidden - Ẩn/tàng hình, nhưng vẫn giữ khoảng trống  của element
                 visible - Hiện ra lại 

<style>

  div.hidden {
      visibility: hidden;
  }

</style>

<h1>This is a heading</h1>
<div class="hidden">
    This text will not display in browser.
</div>
<p>
    The space above this paragraph is empty because
    the visibility of the div element is set to hidden.
</p>