You are here: Reference > CSS > properties > speak

speak property

Browser support:
Specifies how the browser should speak the content.
JavaScript page for this property: speak. You can find other example(s) there.

Possible values:

 One of the following values: 
inherit
Takes the value of this property from the computed style of the parent element.
none
Uses language-dependent pronunciation rules for rendering an element and its children.
normal
Suppresses aural rendering so that the element requires no time to render.
spell-out
Spells the text one letter at a time.
Default: normal.

Example HTML code 1:

This example illustrates the use of the speak property:
<head>
    <style>
        .example {
            speak: spell-out
        }
    </style>
</head>
<body>
    <p class="example">WWW Select this text and use context menu</p>
</body>
Did you find this example helpful? yes no

Supported by tags:

Related pages:

External links:

User Contributed Comments

Post Content

Post Content