Computer >> Computer tutorials >  >> Programming >> CSS

CSS voice-stress Speech Media property


Add adjustments to the speech with the voice-stress property like change pitch, how much loud it is, etc.

The following is the syntax:

voice-stress: normal | strong | moderate | none | reduced

The following example is to implement the voice-stress speech media property:

p {
   voice-stress: strong;
}

Above, I have set strong emphasis using the strong voice-stress property value.