The CSS cue-after property is used in audio devices to play a sound after an element.
Syntax: |
cue-after: <value>;
|
Possible Values: |
- none
- <URI> (must point to an audio resource)
- inherit
|
Initial Value: |
None
|
Applies to: |
All elements
|
Inherited: |
No
|
Media: |
Aural
|
Example: |
h1 {cue-before: url("quack.wav"); cue-after: url("woof.wav") }
|