<frequency>
Quick Summary for frequency#Hz
The <frequency> CSS data type represents a frequency dimension, such as the pitch of a speaking voice. It is not currently used in any CSS properties.
Code Usage for frequency#Hz
12Hz     Positive integer 4.3Hz    Non-integer 14KhZ    The unit is case-insensitive, though non-SI capitalization is not recommended. +0Hz     Zero, with a leading + and a unit -0kHz    Zero, with a leading - and a unit 
More Details for frequency#Hz

<frequency>

The <frequency> CSS data type represents a frequency dimension, such as the pitch of a speaking voice. It is not currently used in any CSS properties.

Syntax

The <frequency> data type consists of a <number> followed by one of the units listed below. As with all CSS dimensions, there is no space between the unit literal and the number.

Units

Hz

Represents a frequency in hertz. Examples: 0Hz, 1500Hz, 10000Hz.

kHz

Represents a frequency in kilohertz. Examples: 0kHz, 1.5kHz, 10kHz.

Note: Although the number 0 is always the same regardless of unit, the unit may not be omitted. In other words, 0 is invalid and does not represent 0Hz or 0kHz. Though the units are case-insensitive, it is good practice to use a capital "H" for Hz and kHz, as specified in the SI.

Examples

Valid frequency values:

12Hz     Positive integer 4.3Hz    Non-integer 14KhZ    The unit is case-insensitive, though non-SI capitalization is not recommended. +0Hz     Zero, with a leading + and a unit -0kHz    Zero, with a leading - and a unit 

Invalid frequency values:

12.0     This is a <number>, not an <frequency>, because it is missing a unit. 7 Hz     No space is allowed between the number and the unit. 0        Although unitless zero is an allowable <length>, it's an invalid <frequency>. 

Specifications

Specification
CSS Values and Units Module Level 5 # frequency

Note: This data type was initially introduced in CSS Level 2 for the now-obsolete aural media type, where it was used to define the pitch of the voice. However, the <frequency> data type has been reintroduced in CSS3, though no CSS property is using it at the moment.

See also

<frequency-percentage> CSS Values and Units

Last modified: Nov 21, 2021, by MDN contributors

Select your preferred language English (US)DeutschEspañolFrançais日本語한국어中文 (简体) Change language

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Categories in CSS
css
Search CSS
Search CSS by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
There is no way to happiness. Happiness is the way.
Unknown
Random CSS Property

appearance (-moz-appearance, -webkit-appearance)

The appearance CSS property is used to display an element using platform-native styling, based on the operating system's theme. The -moz-appearance and -webkit-appearance properties are non-standard versions of this property, used (respectively) by Gecko (Firefox) and by WebKit-based (e.g., Safari) and Blink-based (e.g., Chrome, Opera) browsers to achieve the same thing. Note that Firefox and Edge also support -webkit-appearance, for compatibility reasons.
appearance css reference