Computer >> Computer tutorials >  >> Programming >> CSS

CSS cue-after Property


The cue-after property specifies a sound to be played after speaking an element's content to delimit it from other. The possible values include −

  • url − The URL of a sound file to be played.
  • none − Nothing has to be played.

Example

<style>
   <!--
      a {cue-after: url("dong.wav");}
      h1 {cue-after: url("pop.au"); }
   -->
</style>