CSS Speech-Rate Property

CSS 1

CSS 2

CSS 3

No Yes Yes

Description

The speech-rate property defines the speaking rate for when the element is read.

Syntax

speech-rate: [value];

Possible values

  • [number] - (Specifies the number of words per minute)
  • x-slow - (80 words per minute)
  • slow - (120 words per minute)
  • medium - (18- 200 words per minute)
  • fast - (300 words per minute)
  • x-fast - (500 words per minute)
  • faster - (adds 40 words per minute)
  • slower - (subtracts 40 words per minute)
  • inherit

Initial Value

medium

Applies To

All elements

Inherited

Yes

Media

Aural

Example

p {speech-rate: slow;}


View All CSS Properties