CSS speak-header property
CSS speak-header Property
Description
The speak-header property is used for audio media to specify whether the table header should be read before each cell, or only if the cell uses a different header than the previous one.
Possible Values
- once – The header will be read only once.
-
always – The header content will be read as the preface to each associated cell in the table.
DOM Syntax
object.style.speakHeader = "once";
Applicable Objects
All elements with header information.
Example
Here is an example:-
<style type = "text/css">
<!--
table {speak-header: once;}
th.urgent {speak-header: always;}
-->
</style>
For more details, see CSS Sound Media .