CSS - cue-before


Description

The cue-beofre property is used in audio devices to play a sound before an element.

Possible Values

  • none − No media file.

  • URI − Location of media file.

Applies to

All the HTML elements.

DOM Syntax

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

Example

Here is the example −

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