CSS cue-after property

CSS cue-after Property

Description

The cue-after property is used by audio devices to play a sound after an element.

Possible Values

  • none − No media file.
  • URI − The location of a media file.


Applies to

All HTML elements.

DOM syntax

object.style.cueAfter = url("music.wav"); 

Example

This is an example-

<style type = "text/css"> 
<!-- 
a {cue-after: url("bell.aiff");} 
h1 {cue-after: url("pop.au"); } 
--> 
</style> 

Leave a Reply

Your email address will not be published. Required fields are marked *