[contents]

W3C

CSS Techniques for WCAG 2.0

W3C Working Draft 03 September 2004

This version:
http://www.w3.org/WAI/GL/WCAG20/WD-WCAG20-CSS-TECHS-20040903/
Latest version:
http://www.w3.org/WAI/GL/WCAG20/WD-WCAG20-CSS-TECHS/
Previous version:
http://www.w3.org/WAI/GL/WCAG20/WD-WCAG20-CSS-TECHS-20040726.html
Editor:
Wendy Chisholm, W3C

Abstract

This document provides information to Web content developers who wish to satisfy the success criteria of "Web Content Accessibility Guidelines 2.0" [WCAG20] (currently a Working Draft). It includes techniques, code examples, and references to help authors satisfy each success criterion in the guidelines. The techniques in this document are specific to using Cascading Style Sheets [CSS1] and [CSS2] (and in the future [CSS21] and [CSS3] in conjunction with other technologies such as Hypertext Markup Language content [HTML4], [XHTML1], Scalable Vector Graphics [SVG11], and SMIL [SMIL2]. Deprecated examples illustrate techniques that content developers should not use. The techniques listed in this document are suggestions on how to conform to WCAG 2.0. However, they may not be the only way to satisfy each success criterion.

Editorial Note: Needs to be clearer that CSS needs to be used in conjunction with other technologies and that this document only presents general CSS concepts. That implies each technology-specific document ought to have a CSS-specific chapter for clarification on use of CSS with each technology.

Note: WCAG 2.0 is a Working Draft and the cross-references between success criteria and techniques are not fully established.

This document will be part of a series of documents published by the W3C Web Accessibility Initiative (WAI) to support WCAG 2.0.

Status of this Document

This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications and the latest revision of this technical report can be found in the W3C technical reports index at http://www.w3.org/TR/.

Publication as a Working Draft does not imply endorsement by the W3C Membership. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress.

This document is prepared by the Web Content Accessibility Guidelines Working Group (WCAG WG) to show how CSS Techniques for WCAG 2.0 [WCAG20] might read. This draft is not yet based on consensus of the WCAG Working Group nor has it gone through W3C process. This Working Draft in no way supersedes [WCAG10-CSS-TECHS] published as a W3C Note September 2000. This First Public Working Draft signifies a renewed effort by the WCAG WG to provide guidance on using CSS to create accessible content. The WCAG WG intends to publish this as a Working Group Note at the same time or soon after WCAG 2.0 becomes a Recommendation.

Please refer to "Issue tracking for WCAG 2.0 Techniques for CSS" for a list of open issues related to this Working Draft.

The Working Group welcomes comments on this document at public-comments-wcag20. The archives for this list are publicly available.

This document has been produced as part of the W3C Web Accessibility Initiative (WAI). The goals of the WCAG WG are discussed in the Working Group charter. The WCAG WG is part of the WAI Technical Activity.


Table of Contents

Appendix


Why CSS?

The term "style sheet" comes from the idea of a document that tells a human typesetter the house policies for how documents of particular types (not particular documents) should appear.

David Woolley - 7 May 2001

From the Abstract of CSS 2.1 [CSS2] : "CSS 2.1 is a style sheet language that allows authors and users to attach style (e.g., fonts and spacing) to structured documents (e.g., HTML documents and XML applications). By separating the presentation style of documents from the content of documents, CSS 2.1 simplifies Web authoring and site maintenance...It supports media-specific style sheets so that authors may tailor the presentation of their documents to visual browsers, aural devices, handheld devices, etc."

"CSS design principles" [CSS2] lists 10 principles including simplicity, flexibility, and accessibility. The CSS features intended to make the Web more accessible to people with disabilities:

Where style sheets may be optional to display HTML, they are required to display XML. As explained in question C.22 of The XML FAQ by Peter Flynn:

Therefore, the differences between CSS for XML and HTML are that in XML:

To apply the same external style sheet to both HTML and XML

For more information about XML and CSS:

For more information about creating accessible XML applications refer to the XML Accessibility Guidelines.

Future Work

User agent support information is not included in this draft. In future drafts, the WCAG WG intends to provide this information to help authors decide which techniques to implement. Providing this information requires extensive user agent and assistive technology testing. The WCAG WG welcomes submissions of test result information that demonstrates user agent or assistive technology support (or lack of support) of existing techniques. Submissions of additional techniques are also welcome.

As work on the technology-specific checklists progresses, we expect to clearly distinguish between techniques required for conformance versus those that are optional. That distinction is not made in this Working Draft. The issue is captured as Issue #772 -"How do we make it clear that there are some techniques that are sufficient and some that are optional?"

1. Syntax and basic data types

1.1 Using em or percent for properties that need to change

This technique relates to the following sections of the guidelines:

Task:

Use "em" or % for properties that need to change

Editorial Note: Currently this is mapped to the guidelines for 'separating content from structure' and 'technology support,' however there was discussion at the 23 June 2004 techniques teleconference about a new guideline/success criteria about "transform gracefully." Issue 827

Think about what needs to change in size and what doesn't. Raster images, for example, have fixed width and heights...Similarly, if I just want to move the text away from the border of the page, setting the padding on the body to 5 px shouldn't be a problem. Text, on the other hand, should always be free to change size (a good reason not to use text in images). But when my text doubles in size, do I need the gutter next to it to double in size as well? Probably not. In fact, doubling the gutter might even decrease the usability of the page.

Charles Munat - 6 May 2001

Font properties that need to change:

  • font size,

  • line height,

Editorial Note: Tim Boland created a list of all CSS 2.1 properties that support length units (of both relative and absolute values). Should we test all to determine accessibility issues related to use of px, %, and em for each property? Issue 728.

Example:

Use em to set font sizes

h1 { font-size: 2em }
Example:

Rather than

h1 { font-size: 12pt }

1.2 Using px for properties that do not need to be changed

This technique relates to the following sections of the guidelines:

Task:

Use px for properties that do not need to change:

  • height and width of raster images,

  • margins,

  • borders,

Editorial Note: Tim Boland created a list of all CSS 2.1 properties that support length units (of both relative and absolute values). Should we test all to determine accessibility issues related to use of px, %, and em for each property? Issue 728. Also, Issue 1020.

Editorial Note: Currently this is mapped to separating content from structure and technology support, however there was discussion at the 23 June 2004 techniques teleconference about a new guideline/success criteria about "transform gracefully." Issue 827

Example:

Use px for margins otherwise as text increases the margin will widen and space available for text will decrease.

Editorial Note: Add another example to show width and height of images?

body { margin-left: 15px; margin-right: 15px}

2. Selectors

2.1 Selecting individual characters or lines

Task:

Use :first-letter, :first-line, or span to select individual characters or lines.

The :first-letter and :first-line pseudo-elements allow authors to refer to the first letter or line of a paragraph of text. Issue 735.

Example:

This example uses span and class to create a drop cap .

<style type="text/css">
    .dropcap { font-size : 120%; font-family : Helvetica }
   </style>
...
   <p><span class="dropcap">O</span>nce upon a time...</p>
Example:

This example uses the :first-letter pseudo-element instead of span and class to create a drop cap.

<style type="text/css">
      p.dropcap:first-letter  { font-size : 120%; font-family : Helvetica }
   </style>
...           
   <p class="dropcap">Once upon a time...</p>

2.2 Accessing alternative representations of content

Task:

Provide alternative presentations of attribute values (optional)

Editorial Note: Related to text equivalents to reduce cognitive load?

CSS2 lets users access alternative representations of content that is specified in attribute values when the following are used together:

  • attribute selectors.

  • the attr() function and the 'content' property'

  • the :before and :after pseudo-elements

Example:

The value of the "alt" attribute for the IMG element is rendered after the image (visually, aurally, etc.). Note that the value of the attribute is displayed even though the image may not be (e.g., the user has turned off images through the user interface).

    
img:after {         
   content: attr(alt)      
} 

3. Media types

3.1 Media types

This technique relates to the following sections of the guidelines:

Task:

Optimize presentation for a variety of devices by providing media-specific style sheets

Editorial Note: Wording needs work

The CSS2 "media types" (used with @media rules) allow authors and users to design style sheets that will cause documents to render more appropriately on certain target devices. These style sheets can tailor content for presentation on braille devices, speech synthesizers, or TTY devices. Using "@media" rules can also reduce download times by allowing user agents to ignore inapplicable rules.

4. Box model

4.1 Creating borders

Task:

Use style sheets to create borders around groups of content.

Borders may visually convey "separation" or "grouping." Use these CSS properties to specify border styles:

  • 'border', 'border-width', 'border-style', 'border-color'.

  • 'border-spacing' and 'border-collapse' for tables.

Example:

The html:h1 element has a top border that is 2px thick, red, and separated from the content by 1em.

   <style type="text/css">   
      h1 { padding-top: 1em; border-top: solid 2px red }
   </style>
...
<h1>Chapter 8 - Auditory and Tactile Displays</h1> 

4.2 Margins

Task:

Use 'margin', 'margin-top', 'margin-right', 'margin-bottom', 'margin-left' to create space on four sides of an element's content.

Instead of using non-breaking spaces ( ), create space with CSS.

5. Visual formatting model and visual effects

5.1 Specifying the direction of text

Task:

Use 'direction' and 'unicode-bidi' to specify direction of text.

Text direction: 'direction', 'unicode-bidi'.

Editorial Note: Clarify that this technique only applies when the language of the content requires a change in direction of presentation.

5.2 Creating layout, positioning, layering, and alignment

This technique relates to the following sections of the guidelines:

Task:

Use 'text-indent', 'text-align', 'word-spacing', 'font-stretch' to control spacing. Use 'text-align: center' instead of the deprecated html:center element.

Issue 308

Editorial Note: Add 'clear' to the list?

5.3 Positioning (float, position)

Task:

Use 'float', 'position', 'top', 'right', 'bottom', 'left' to control position.

With these properties, the user can control the visual position of almost any element in a manner independent of where the element appears in the document. Authors should design html content that makes sense without style sheets (i.e., the document should be written in a "logical" order) and then apply style sheets to achieve visual effects. The positioning properties may be used to create margin notes (which may be automatically numbered), side bars, frame-like effects, simple headers and footers, and more.

5.4 Hiding and showing content

Task:

Placeholder

Editorial Note: Issue 298 - support for display: none and visibility: hidden.

6. Generated content, automatic numbering, and lists

CSS2 includes several mechanisms that allow content to be generated from style sheets:

Editorial Note: Break these out into separate techniques?

Generated content can serve as markers to help users navigate a document and stay oriented when they can't access visual clues such as proportional scrollbars, frames with tables of contents, etc.

Editorial Note: Issue 253: should we add a cautionary note about the potential misuses of CSS generated text?

6.1 Providing text equivalents for content generated by style sheets

This technique relates to the following sections of the guidelines:

Task:

Provide a text equivalent for important images generated by style sheets via the 'background-image', 'list-style', or 'content' properties.

Editorial Note: Is the intent of this to say, "if something important is included via css, either do not include via CSS or describe in the HTML somewhere?" However, this conflicts with "generate content to help identify structure."

Editorial Note: Split into 2 techniques? 1. how to use generated content to increase accessibility and 2. if you use, beware of the possible side effects. For example, if using FIR, you constrain the size of the area in which the text appears. Thus, if you turn off images, you could resize the text but the text may be larger than the area in which it is displayed - unreadable.

Editorial Note: If it is a background image, does it need a label? There is no exception in 1.1 for background images. Also, is there a way to "explicitly associate" a text equivalent with images included via css?

6.2 Providing additional structural information

Task:

Use :before and :after to provide additional structural information

Editorial Note: Text generated by style sheets is not part of the document source and may not be available to assistive technologies that access content through the Document Object Model Level 1.

Issue 191 - Example from Gregory Rosmaita.

Example:

The following style sheet generates the words "End Example" after each example.

 
div.example:after {        
   content: End Example   
} 
Example:

Users can number paragraphs to help locate current reading position in a document.

 
p:before {           
   content: counter(paragraph) ". " ;            
   counter-increment: paragraph      
} 
Example:

This CSS2 style sheet provides compound numbers for nested lists created with either UL or OL elements. Items are numbered as "1", "1.1", "1.1.1", etc.

Editorial Note: Find real-world example, such as a legal document, where this is actually used or would be beneficial.

<style type="text/css">
   ul, ol { counter-reset: item }
      li { display: block }
      li:before { content: counters(item, "."); counter-increment: item }
</style>                      

7. Colors and Backgrounds

7.1 Specifying colors by keyword or RGB value

This technique relates to the following sections of the guidelines:

Task:

Use CSS color keywords or a numerical RGB value to specify colors.

Editorial Note: Issue 734. Is this an accessibility issue? Are there issues related to specifying colors using color keywords not defined in the CSS specification that should be covered here?

Example:

The color 'red' is specified using RGB values and the 'red' CSS color keyword.

h1 {color: #ff0000}
h2 {color: rgb(100%,0%,0%)}
h3 {color: red}
Resources:

CSS 2.1: Colors. The CSS 2.1 specification contains 17 color keywords.

7.2 Specifying colors

This technique relates to the following sections of the guidelines:

Task:

Use 'color,' 'background-color,' 'border-color,' 'outline-color,' and dynamic pseudo-classes to specify colors

Use the following CSS properties to specify colors:

  • 'color', for foreground text color.

  • 'background-color' ,for background colors.

  • 'border-color', 'outline-color' for border colors.

  • For link colors, refer to the :link, :visited, and :active pseudo-classes.

7.3 Creating foreground and background contrast

This technique relates to the following sections of the guidelines:

Task:

Ensure that foreground and background colors contrast well.

One test for determining whether color contrast is sufficient to be read by people with color deficiencies or by those with low resolution monitors, print pages on a black and white printer (with backgrounds and colors appearing in grayscale). Also try taking the printout and copying it for two or three generations to see how it degrades. This will show you where you need to add redundant cues (example: hyperlinks are usually underlined on Web pages), or whether the cues are too small or indistinct to hold up well.

Editorial Note: Still want to recommend this test? Instead could recommend brewer palette or other techniques. Move this to General techniques? Issue 739 - Additional comments about this technique.

Resources:

7.4 Specifying background and foreground color

This technique relates to the following sections of the guidelines:

Task:

If specifying a foreground color, always specify a background color as well (and vice versa).

Editorial Note: Accessibility issue? Can't user agents override?

8. Fonts

8.1 Specifying fallback fonts

This technique relates to the following sections of the guidelines:

Task:

Always specify a fallback font.

Editorial Note: What is the accessibility issue?

Editorial Note: JIS-related issue with selecting readable fonts. Issue 892

Example:

A sans-serif font will be used if "Gill Sans" is not available on the user's machine.

h1 { font-family: "Gill Sans", sans-serif } 
Resources:

8.2 Specifying font characteristics

This technique relates to the following sections of the guidelines:

Task:

Use font-family, font-size, font-size-adjust, font-stretch, font-style, font-variant, and font-weight to control font characteristics.

Use CSS properties to format text instead of the following deprecated font elements and attributes in HTML: font, basefont, face, and size.

Example:

Font characteristics are specified for two classes of the html:p element (primary and secondary) and for one class of the h2 element (subsection).

<style type="text/css">
   p.primary { font-weight: bold }
   p.secondary { font-weight: lighter; font-size: smaller }
   h2.subsection { font-family: Helvetica, sans-serif }
</style>         
Resources:

8.3 Specifying font sizes using xx-small to xx-large

Task:

Placeholder

Editorial Note: Placeholder for technique about using xx-small to xx-large. Issue 307.

9. Text

9.1 Creating stylized text with CSS rather than using raster images

This technique relates to the following sections of the guidelines:

Task:

Use style sheets to style text rather than creating images of text.

Using text as text makes the information available to people who use speech synthesizers and braille displays. Using style sheets will also allow users to change colors or font sizes.

If it is necessary to use a raster-based image to create a text effect, the image must be accessible (refer to the section on text equivalents ).

Editorial Note: Related to Issue 827 and Issue 556

Example:

The image shows the word "Example" in large, red characters. The alt attribute contains the text equivalent.

<p>This is an <img src="BigRedExample.gif" alt="example"> of big red text. </p>
Example:

Creates large, red characters.

<style type="text/css">
  em.BigRedExample {color: red; font-size: 3 em}
</style>
...
<p>This is an <em class="BigRedExample">example</em> of big red text. </p>

9.2 Indenting text

This technique relates to the following sections of the guidelines:

Task:

Use text-indent to indent text.

Editorial Note: There is an "and" relationship between this and using structural elements (e.g., in HTML, use the header element and then style with css)

9.3 Spacing letters and words

Task:

Use letter-spacing, word-spacing, and white-space to manage space between letters, words, and other white space

When letters are separated by whitespace characters they are read as individual letters. Thus, "H E L L O" will be read by a screen reader as the individual letters, 'H', 'E', 'L', 'L', 'O' rather than the word "hello." Create the same visual effect with the 'letter-spacing' property applied to "HELLO." Text without spaces will be transformed effectively to speech.

  • Letter/word spacing: 'letter-spacing', 'word-spacing'.

  • White space: 'white-space'. This property controls the white space processing of an element's content.

Editorial Note: Accessibility issue? This technique should not imply that capitalization of acronyms or abbreviations should be achieved via CSS.

Example:

The space between characters is increased by '0.1em'.

p.space { letter-spacing: 0.1em }
...
<p class="space">HELLO</p>

9.4 Changing case

This technique relates to the following sections of the guidelines:

Task:

Use 'text-transform' to change case

Case: 'text-transform' (for uppercase, lowercase, and capitalization).

9.5 Creating shadow effects (deprecated)

Task:

Create shadow effects with 'text-shadow'

Shadow effects: 'text-shadow'

Editorial Note: 'text-shadow' has been dropped from the CSS 2.1 specification. Thus, this technique is likely to be removed from this document.

9.6 Underlining, overlining, and blinking

This technique relates to the following sections of the guidelines:

Task:

Underline, overline, or blink with 'text-decoration'

Using CSS to create blinking content gives users the ability to stop the blinking by either turning off style sheets or overriding the effect with through user agent settings. Do not use the 'blink' and 'marquee' elements - they are not standard.

Editorial Note: Issue 1021 Do we want to mention blink if there is a possibility it might not be controllable by the user agent?

10. Tables

10.1 Displaying empty table cells

Task:

Use 'empty-cells' to display empty table cells

The 'empty-cells' property allows users to leave table cells empty and still display cell borders on the screen or on paper. A data cell that is meant to be empty should not be filled with white space or a non-breaking space to achieve a visual effect.

11. User interface

11.1 Outlining content

Task:

Use style sheets to outline groups of content.

Outlines may visually convey "separation" or "grouping." Use these CSS properties to specify outline styles:

  • 'outline, 'outline-color', 'outline-style', and 'outline-width' for dynamic outlines.

12. Auditory effects

12.1 Creating auditory presentations

This technique relates to the following sections of the guidelines:

Task:

Use ACSS or SSML to create auditory presentations

Editorial Note: If the audio-contrast guideline said something about the ability to turn sounds off or user control of styling sounds, then we could link to a success criterion. As it is, it is linked to a guideline but no criterion.

Editorial Note: Mark this as a future technique and create placeholder for reference to CSS3 speech module. In CSS 2.1, aural style sheets moved to an appendix. In CSS3, likely to reference SSML and other work by voice browser working group.

CSS2's aural properties provide information to non-sighted users and voice-browser users much in the same way fonts provide visual information.

The following properties are part of CSS2's aural cascading style sheets.

  • 'volume' controls the volume of spoken text.

  • 'speak' controls whether content will be spoken and, if so, whether it will be spelled or spoken as words. Issue 304 - Internationalization issues - "spell" implies applicability only to letter-based languages.

  • 'pause', 'pause-before', and 'pause-after' control pauses before and after content is spoken. This allows users to separate content for better comprehension.

  • 'cue', 'cue-before', and 'cue-after' specify a sound to be played before and after content, which can be valuable for orientation (much like a visual icon).

  • 'play-during' controls background sounds while an element is rendered (much like a background image).

  • 'azimuth' and 'elevation' provide dimension to sound, which allows users to distinguish voices, for example.

  • 'speech-rate', 'voice-family', 'pitch', 'pitch-range', 'stress', and 'richness' control the quality of spoken content. By varying these properties for different elements, users can fine-tune how content is presented aurally.

  • 'speak-punctuation' and 'speak-numeral' control how numbers and punctuation are spoken, which has an effect on the quality of the experience of aural browsing.

Furthermore, the 'speak-header' property describes how table header information is to be spoken before a table cell.

Example:

This example shows how various sound qualities (including 'voice-family', which is something like an audio font) can let a user know that spoken content is a heading.

    
h1 {           
   voice-family: paul;           
   stress: 20;           
   richness: 90;           
   cue-before: url("ping.au")         
} 

13. Miscellaneous assortment of techniques

13.1 Providing structural markup for graceful degradation

Task:

Use structural markup and document order to design content that degrades gracefully

Using the positioning properties of CSS2, content may be displayed at any position on the user's viewport. The order in which items appear on a screen may be different than the order they are found in the source document.

Editorial Note: "and" relationship with use of structural elements

Example:

The following example demonstrates a few principles:

  1. the text appears visually in the browser in a different order than in the markup.

  2. CSS positioning may be used to create tabular effects. An HTML table element could have been used to create the same effect.

Note that a class is defined for each object that is being positioned. The use of "id" could be substituted for "class" in these examples. "Class" was used because in the live example, the objects are replicated and thus not unique.

Editorial Note: The screen shots and explanation from CSS Techniques for WCAG 1.0 are missing. @@ Look at adding them back in.

    
<head>
   <style type="text/css">      
      .menu1 { 
         position: absolute; 
         top: 3em; 
         left: 0em;     
         margin: 0px; 
         font-family: sans-serif;     
         font-size: 120%; 
         color: red; 
         background-color: white 

      }        
  
      .menu2 { 
         position: absolute; 
         top: 3em; 
         left: 10em;     
         margin: 0px; 
         font-family: sans-serif;     
         font-size: 120%; 
         color: red; 
         background-color: white 
      }      
      
      .item1 { 
         position: absolute; 
         top: 7em; 
         left: 0em; 
         margin: 0px 
      }      
      
      .item2 { 
         position: absolute; 
         top: 8em; 
         left: 0em; 
         margin: 0px 
      }      
      
      .item3 { 
         position: absolute; 
         top: 9em; 
         left: 0em; 
         margin: 0px 
      }      
      
      .item4 { 
         position: absolute; 
         top: 7em; 
         left: 14em; 
         margin: 0px 
      }      
      
      .item5 { 
         position: absolute; 
         top: 8em; left: 14em; 
         margin: 0px 
      }      
      
      #box { 
         position: absolute; 
         top: 5em; 
         left: 5em 
      }     
   </style>
</head>    
<body>    
   <div class="box">      
      <span class="menu1">Products</span>       
      <span class="menu2">Locations</span>       
      <span class="item1">Telephones</span>       
      <span class="item2">Computers</span>       
      <span class="item3">Portable MP3 Players</span>       
      <span class="item5">Wisconsin</span>       
      <span class="item4">Idaho</span>    </div>    </body> 
Example:

The following example shows that the same visual appearance may be created in a browser that support style sheets as well as creating a more meaningful presentation when style sheets are not applied. Structural markup (definition lists) have been applied to the content. Note that the margins have been set to 0 since in HTML browsers, definition lists are displayed with a margin set on the DD element.

    
<head>
<style type="text/css">
<!--
.item1 {
   left: 0em;
   margin: 0px;
   position: absolute;
   top: 7em;
}

.item2 {
   left: 0em;
   margin: 0px;
   position: absolute;
   top: 8em;
}

.item3 {
   left: 0em;
   margin: 0px;
   position: absolute;
   top: 9em;
}

.item4 {
   left: 14em;
   margin: 0px;
   position: absolute;
   top: 7em;
}

.item5 {
   left: 14em;
   margin: 0px;
   position: absolute;
   top: 8em;
}

.menu1 {
   background-color: #FFFFFF;
   color: #FF0000;
   font-family: sans-serif;
   font-size: 120%;
   left: 0em;
   margin: 0px;
   position: absolute;
   top: 3em;
}

.menu2 {
   background-color: #FFFFFF;
   color: #FF0000;
   font-family: sans-serif;
   font-size: 120%;
   left: 10em;
   margin: 0px;
   position: absolute;
   top: 3em;
}

#box {
   left: 5em;
   position: absolute;
   top: 5em;
}
-->
</style>
</head>
<body>
<div class="box">
  <dl>
    <dt class="menu1">Products</dt>
    <dd class="item1">Telephones</dd>
    <dd class="item2">Computers</dd>
    <dd class="item3">Portable MP3 Players</dd>
    <dt class="menu2">Locations</dt>
    <dd class="item4">Idaho</dd>
    <dd class="item5">Wisconsin</dd>
    </dt>
  </dl>
</div>
</body>
 

13.2 Scripting and style sheets

Task:

Placeholder

Editorial Note: This section should discuss ECMAscript, and style sheets. It should reference a real world accessible example. Previously used examples were the MWC example or "the company." What about examples that use other host languages (not only HTML, but also SVG and MathML)? Demonstrate hide/show content, movement, and changes in color. To be developed by the script gurus and included in HTML techs?

13.3 Conveying semantics via presentation

Task:

Placeholder

Editorial Note: Placeholder for issue 199

14. References

CSS1
CSS, level 1 Recommendation , B. Bos, H. Wium Lie, eds., 17 December 1996, revised 11 January 1999. This CSS1 Recommendation is http://www.w3.org/TR/1999/REC-CSS1-19990111. The latest version of CSS1 is available at http://www.w3.org/TR/REC-CSS1.
CSS2
CSS, level 2 Recommendation , B. Bos, H. Wium Lie, C. Lilley, and I. Jacobs, eds., 12 May 1998. This CSS2 Recommendation is http://www.w3.org/TR/1998/REC-CSS2-19980512/. The latest version of CSS2 is available at http://www.w3.org/TR/REC-CSS2.
CSS21
Cascading Style Sheets, level 2 revision 1 , W3C Proposed Recommendation. B. Bos, T. Çelik, I. Hickson, H. Wium Lie, eds., 25 February 2004.
CSS3
[CSS 2.1 and CSS 3] Roadmap , CSS WG's table of modules and publication dates.
HTML4
Dave Raggett, Arnaud Le Hors, Ian Jacobs, Eds., HTML 4.01 Specification , W3C Recommendation. (See http://www.w3.org/TR/html401.)
SMIL2
" Synchronized Multimedia Integration Language (SMIL 2.0) ," Jeff Ayars, et al, eds., 07 August 2001.
SVG11
" Scalable Vector Graphics (SVG) 1.1 Specification ," Jon Ferraiolo, 藤沢 淳 (FUJISAWA Jun), and Dean Jackson, eds., 14 January 2003.
WCAG10-CSS-TECHS
" CSS Techniques for Web Content Accessibility Guidelines 1.0 ", W. Chisholm, G. Vanderheiden, and I. Jacobs, eds. The latest version of this document is available at http://www.w3.org/TR/WCAG10-CSS-TECHS/.
WCAG20
" Web Content Accessibility Guidelines 2.0 ", B. Caldwell, W. Chisholm, J. White, and G. Vanderheiden, eds.
XHTML1
" XHTML 1.0 The Extensible HyperText Markup Language (Second Edition) " Steven Pemberton, et al., 26 January 2000, revised 1 August 2002. This XHTML1 Recommendation is http://www.w3.org/TR/2002/REC-xhtml1-20020801/. The latest version of XHTML1 is http://www.w3.org/TR/xhtml1/.

Appendix 1 Contributors

Participants in the WCAG WG Techniques Task Force: Jenae Andershonis, Tim Boland, Ben Caldwell, Michael Cooper, Tom Croucher, Don Evans, Becky Gibson, David MacDonald, Matt May, Sailesh Panchang, Chris Ridpath, Lisa Seeman, Jim Thatcher

Feedback also received from Joe Clark, Charles McCathieNevile, Jens Meiert, Charles Munat, Gregory Rosmaita, Roberto Scano, and Gregg Vanderheiden.

Editorial Note: This list is likely incomplete.