Home > Article > Web Front-end > CSS voice-rate voice media property
#The CSS voice-rate property specifies the rate of speaking in words per minute. Set the rate using the following values
voice-rate: [normal | x-slow | slow | medium | fast | x-fast]
If you want slow speech, set to slow; if you want a slower speed, set to x-slow.
Set faster voice rate: p { voice-rate: x-fast; }
Set voice rate in percentage
p { voice-rate: 40%; }
The above is the detailed content of CSS voice-rate voice media property. For more information, please follow other related articles on the PHP Chinese website!