Re: CSS3 Speech module: Comments and Corrections

Nicholas Shanks wrote:
> After having read through the new aural media WD (CSS3 Speech module, 
> http://www.w3.org/TR/css3-speech/), I would like to offer the following 
> comments to the author (which isn't given, BTW)

See "Editor" at the top of the draft.


> 1) There appears to be no direct way to substitute an audio file in 
> place of a specific span of text, which would not be rendered by the UA. 

You could probably use something like:

  @media speech{
   element{
    content:none;
    cue-before:url(johnwayne.aiff);
   }
  }

This uses 'content' from another CSS3 module, that seems one way to do it.


-- 
  Anne van Kesteren
  <http://annevankesteren.nl/>

Received on Friday, 7 May 2004 09:57:49 UTC