vote up 3 vote down star

If so, does it effectively deprecate the visibility property?

(I realize that Internet Explorer does not yet support this CSS2 property.)
Comparisons of layout engines

See also: What is the difference between visibility:hidden and display:none

flag

79% accept rate
1  
And how about taborder? If visible=false then the control does not get any focus, but if opacity is 0 maybe the tab key still iterates between the controls? – Stefan Nov 7 '08 at 15:28
It would be an interesting test case to see how a transparent control might get focus. – Chris Noe Nov 7 '08 at 15:42
1  
I tried that, (FF3). An input element with opacity:0 does receive focus, per the taborder, though there is no visual indication. The cursor just disappears. Whatever you type is entered into the value of the input element. Pressing tab again moves on to the next field. Interesting. – Chris Noe Nov 7 '08 at 19:10

6 Answers

vote up 3 vote down

Im not sure entirely, but this is how i do cross browser transparency:

opacity: 0.6;
-moz-opacity: 0.6;
filter: alpha(opacity=60);

objects with Visibility:hidden still have shape, they just arent visible. opacity zero elements can still be clicked and react to other events.

link|flag
What does it mean to have shape and be invisible? – Chris Noe Nov 7 '08 at 15:21
@chris, it means that they still take up the space on the page – Mitchel Sellers Nov 7 '08 at 15:22
vote up 3 vote down

Here is a compilation of verified information from the various answers.

Each of these CSS properties is in fact unique. In addition to rendering an element not visible, they have the following additional effect(s):

  1. Collapses the space that the element would normally occupy
  2. Responds to events (e.g., click, keypress)
  3. Participates in the taborder
                     collapse events taborder
opacity: 0              No     Yes     Yes
visibility: hidden      No     No      No
visibility: collapse    *      No      No
display: none          Yes     No      No

* Yes inside a table element, otherwise No.
link|flag
Help! Any advice on getting the table to format correctly? – Chris Noe Nov 7 '08 at 18:29
You need to tinker with it a bit, but use the <pre> tag. – Rob Nov 7 '08 at 18:41
Well now it's no longer a table, but a bit better I guess. – Chris Noe Nov 7 '08 at 19:01
I tried to follow the Markdown documentation here: daringfireball.net/projects/markdown/… – Chris Noe Nov 7 '08 at 19:03
Okay, so SO intentionally does not support <table>. So I made it ascii. – Chris Noe Nov 7 '08 at 19:26
vote up 2 vote down

I'm not entirely sure of this, but I think screen readers don't read things that are set to visibility hidden, but they may read things regardless of their opacity.

That's the only difference I can think of.

link|flag
How would that effect the result then? Perhaps in terms of what is included in the DOM? My test cases show that Mozilla is not throwing away visibility:hidden elements. – Chris Noe Nov 7 '08 at 15:18
The elements would be in the DOM regardless of CSS style, I mean that blind users using screen reader software may have text in the opacity:0 element read to them, whereas they wouldn't if the same element had visibility:hidden. It's an accessibility concern really, as the result is different. – Phil Nov 7 '08 at 15:23
Got it. Thanks Phil. – Chris Noe Nov 7 '08 at 15:38
vote up 0 vote down

What Phil says is true.

IE supports opacity though:

filter:alpha(opacity=0);
link|flag
vote up 0 vote down

The properties have different semantic meanings. While semantic CSS sounds like it may be silly, as other users have mentioned it has an impact on devices like screen readers -- where semantics impact the accessibility of a page.

link|flag
vote up 0 vote down

No.

Elements with opacity create new stacking context.

Also, CSS spec doesn't define this, but elements with opacity:0 are clickable, and elements with visibility:hidden are not.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.