CSS Voice-Pitch Property

CSS 1

CSS 2

CSS 3

No No Yes

Description

Specifies the average pitch (a frequency) of the speaking voice. The average pitch of a voice depends on the voice family. For example, the average pitch for a standard male voice is around 120Hz, but for a female voice, it's around 210Hz.

Syntax

voice-pitch: [value]

Possible values

  • [number]
  • [percentage]
  • x-low
  • low
  • high
  • x-high
  • inherit

Initial Value

medium

Applies To

All elements

Inherited

Yes

Media

Speech

Example

.class {
  voice-pitch: low;
}


View All CSS Properties