What is Proper CSS for hiding any HTML. Example- Like <div> tag.
I use to do this:
div {display:none; visibility:hidden;}
Does the CSS Supports all the major browsers to Hide that div. Especially Does it Support I.E.
|
Both Which one you use depends on your goal of hiding an element. For example, if you dynamically (with a client-side script) switch off or on some content, then Using both is normally pointless, as |
|||
|
|
|
Use
You will still see 100px between the two pieces of text, but you will not see the contents within the div. Using:
There will be no space between the two text elements, as the Both are supported in any modern browser you can think of. |
|||
|
|
|
You don't even need
The above should be enough. And it works in all browsers. It pretty much hides the element completely, as in, it will no longer have an influence in page layout. |
|||
|
|
hidden– Robert Harvey♦ Feb 24 '12 at 4:31