The 'cue' family of properties allows the attachment of key sounds (or "Auditory Icons" as the CSS spec refers to them) to elements. This allows an author to add distinguishing characteristics to semantic elements. 'Cue' is a shorthand property for setting both 'cue-before' and 'cue-after' property values. If two values are given, the first value is assigned to 'cue-before' and the second is 'cue-after'. If only one value is given, it applies to both properties. If loading of a URL fails, nothing should be played, but if the system does not have the ability to play it, the spec says the system should try to use some sort of cue (audio, visual or other.)
.someclass {
cue: url(orchestralsneeze.wav) url(quack.wav)
}
text