Right, I am a CSS noob. I am trying to collate the various ways to hide a div.
For example:
display:none; visibility:hidden;
Are there
I have no idea why do you ask question like that, but here is another way to hide an element:
element.style { width: 0px; height: 0px; overflow: hidden; }