RE: possible alternative to css hiding with display:none etc

Rebecca Cox wrote:

... using CSS positioning to position the content to be hidden out of
the viewable area - eg:

HTML:

<h1 id="testheader">Header we want to hide on screen</h1> 

CSS:

h1#testheader
{
position: absolute;
left: -420px;
width: 400px;
font-size: x-small;
}

[end clipping]

Should have read WCAG before posting - this is described as a technique
on the draft WCAG 2.0 HTML techniques doc at:

http://www.w3.org/TR/2004/WD-WCAG20-HTML-TECHS-20040730/#linkgroups_hide

Received on Monday, 30 August 2004 23:44:54 UTC