vote up 3 vote down star
1

How can I hide an HTML form legend from visual browsers, using CSS, in an accessible way?

legend { display: none; }

is not an option because, as I understand it, this will 'hide' the legend from screen readers. Other attempts I've made do not remove the legend from the layout - i.e. it continues to take up space.

flag

55% accept rate
What is your purpose behind this? – adamantium Jul 8 at 11:10
I want to have a legend (as I understand it, that's required for valid HTML strict, and is probably good accessibility practise anyway) but I don't want it to be displayed to visual browsers - it's duplication of content. – Bobby Jack Jul 8 at 11:12
Isn't it a fieldset legend? – adamantium Jul 8 at 11:15
It is a legend within a fieldset, yes. – Bobby Jack Jul 8 at 11:19
Sorry. I got confused. Do you need to hide the legend or not? If you need to hide this without taking up space then the only way is to set its display to none – adamantium Jul 8 at 11:22
show 5 more comments

4 Answers

vote up 2 vote down check

Added as an answer instead of a comment so I can get more points. :-)

If you really want legends, have you tried putting a span inside the legend and positioning/manipulating that?

I understand this works in IE7 and Firefox...

link|flag
Although it's not perfectly 'semantically clean', this does appear to be the best option so far - upvoted. FYI, I don't know how serious you're being, but adding this as a real answer is perfectly valid and altruistic: others will benefit from this information, and that's what SO is all about! – Bobby Jack Jul 8 at 12:19
I'm only being semi seriously sarcastic. I try to only really add answers that I know worked. This was originally an off the cuff idea - until you confirmed it worked - so I don't feel like it is fully mine. I am however glad it work (I've learnt something too) and that the information is now available here for others. It's all good :-) – edeverett Jul 8 at 12:27
vote up 0 vote down

You could try:

legend
{
    position: absolute;
    top: -1000px;
}
link|flag
I did - didn't work. That doesn't change the legend's position at all, at least, not in Firefox. I don't know why that is - something 'special' about the legend element? – Bobby Jack Jul 8 at 11:11
This won't work in Firefox. – adamantium Jul 8 at 11:38
2  
If you really want legends, have you tried putting a span inside the legend and positioning/manipulating that? – edeverett Jul 8 at 12:03
1  
@edeverett: I hadn't; works in IE7 and Firefox, though. Care to add this as an answer - it might be the one I accept. – Bobby Jack Jul 8 at 12:08
vote up 2 vote down

You can't do this in Firefox because it is a bug in the browser.

You can read more here

Browser Bugs

link|flag
Great resource - thanks. Guess I'm stuck with "display: none". – Bobby Jack Jul 8 at 11:39
Ok. Done. Thanks – adamantium Jul 8 at 11:48
vote up 2 vote down

For what it's worth - and I'm sure I'll get flamed for this - legend tags are one of the few places I deliberately break the spec by leaving them out. I replace them with a heading of the appropriate level which provides the same information to the user but without the browser bugs.

(I'm happy to hear about the real-world downsides of this if anybody can see some)

edit: Oh and you should ask yourself why assistive technology users would want to hear the legends when your browser using users don't. If the answer is simply to satisfy the HTML specs, use display:none and be done with it - don't hinder the user experience of one group by providing useless information just for a formality.

link|flag
1  
Interesting approach. I can, of course, see the benefits, although I'm not sure how screen readers would react. I guess you COULD also add an empty legend if validation is required; I find it useful to be 100% valid, if only to avoid thinking about whether I'm invalid in an 'acceptable' way or not. – Bobby Jack Jul 8 at 12:05
1  
"to avoid thinking about whether I'm invalid in an 'acceptable' way or not." That is a very good reason, but legends seem like a bad bit of spec and badly implemented in browsers, so I reckon it's not worth my time in this case. (I updated my answer with a bit more of my thinking while you were leaving the comment.) – edeverett Jul 8 at 12:09
Very good point - I'll have to think about that one! Not sure if this question might end up being 'invalid' or if there's ever a justifiable reason for doing what I thought I needed to do ... – Bobby Jack Jul 8 at 12:10

Your Answer

Get an OpenID
or

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