The stress property is used in CSS and certain HTML elements. This property is similar to the pitch-range property. It specifies the maximum output height of "local peaks" in the current voice's wave form. For example, English is a stressed language, and different parts of a sentence are assigned primary, secondary, or tertiary stress.
Values
| Value | Description |
|---|---|
inherit |
Explicitly sets the value of this property to that of the parent. |
<number> |
This is an integer value between 0 and 100. Values are based on language settings (some languages tend to produce higher vocal stresses than others). The initial value is 50.
|
HTML example:
<body style="stress:75;"> Body content. </body>
CSS example:
body {
stress:75;
}