Home  >  Article  >  Web Front-end  >  CSS voice-rate voice media property

CSS voice-rate voice media property

WBOY
WBOYforward
2023-09-17 20:25:03731browse

CSS voice-rate 语音媒体属性

#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!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete