Both of these result in the element not being visible. Are these synonyms?
|
4
|
|
|
|
|
|
display:none means that the the tag in question will not appear on the page at all (although you can still interact with it through the dom). There will be no space allocated for it between the other tags. Visibility:hidden means that unlike display:none, the tag is not visible, but space is allocated for it on the page. so for example
display:none would be: test | | test visibility:hidden would be: test | | test In visibility:hidden the tag is rendered, it just isn't seen on the page. |
||||||
|
|
|
One thing worth adding, though it wasn't asked, is that there is a third option of making the object completely transparent. Consider:
In this case you get:
The difference between 1 and 2 has already been pointed out (namely, 2 still takes up space). However, there is a difference between 2 and 3: in case 3, the mouse will still switch to the hand when hovering over the link, and the user can still click on the link, and Javascript events will still fire on the link. Note: For brevity, I only listed " |
||||||
|
|
|
Thanks orip for the correction. I've gone furtherer than necessary. It's indeed still in the DOM available for javascript manipulations. My fault. Just write an article about this, should clarify the question: http://www.kavoir.com/2009/02/css-difference-between-opacity0-visibilityhidden-and-displaynone.html |
||
|
|
|
|
They are not synonyms. |
||
|
|
|
|
|
||
|
|
|
|
With visibility:hidden the object still takes up vertical height on the page. With display:none it is completely removed. If you have text beneath an image and you do display:none, that text will shift up to fill the space where the image was. If you do visibility:hidden the text will remain in the same location. |
||||
|
|
|
They're not synonyms -
|
||
|
|
|
|
Display: none entirely removes the element from the page, and the page is built as though the element were not there at all. Visibility: hidden leaves the space in the document flow even though you can no longer see it. This may or may not make a big difference depending on what you are doing. |
||
|
|
|
|
display:none removes the element from the layout flow visibility:none hides it but leaves the space |
||
|
|
