Copyright © tutorialspoint.com

CSS - speak

previous next


Description:

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.

Possible Values:

DOM Syntax:

object.style.speak="spell-out";

Applies to:

All the HTML elements

Example:

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.


previous next

Copyright © tutorialspoint.com