Copyright © tutorialspoint.com
The speak property is used to specify that the text will be used for aural media. It also specifies how it will be spoken, for example normal or spelt out.
object.style.speak="spell-out"; |
All the HTML elements
Here is the example:
<style tyle="text/css"> <!-- acronym {speak: spell-out;} *.hidden {speak: none;} --> </style> |
For more detail please look into CSS Aural Media.
Copyright © tutorialspoint.com