1display:none
2/*means that the tag in question will
3not appear on the page at all
4(although you can still interact with it through the dom).
5There will be no space allocated for it between the other tags.*/
6
7visibility:hidden
8/*means that unlike display:none,
9the tag is not visible, but space is allocated for it on the page. The tag is rendered,
10it just isn't seen on the page.*/