<number>
Quick Summary for <number>
The <number> CSS data type represents a number, being either an integer or a number with a fractional component.
Code Usage for <number>
12          A raw <integer> is also a <number>. 4.01        Positive fraction -456.8      Negative fraction 0.0         Zero +0.0        Zero, with a leading + -0.0        Zero, with a leading - .60         Fractional number without a leading zero 10e3        Scientific notation -3.4e-2     Complicated scientific notation 
More Details for <number>

<number>

The <number> CSS data type represents a number, being either an integer or a number with a fractional component.

Syntax

The syntax of <number> extends the syntax of <integer>. A fractional value is represented by a . followed by one or more decimal digits, and may be appended to an integer. There is no unit associated with numbers.

Interpolation

When animated, values of the <number> CSS data type are interpolated as real, floating-point numbers. The speed of the interpolation is determined by the timing function associated with the animation.

Examples

Valid numbers

12          A raw <integer> is also a <number>. 4.01        Positive fraction -456.8      Negative fraction 0.0         Zero +0.0        Zero, with a leading + -0.0        Zero, with a leading - .60         Fractional number without a leading zero 10e3        Scientific notation -3.4e-2     Complicated scientific notation 

Invalid numbers

12.         Decimal points must be followed by at least one digit. +-12.2      Only one leading +/- is allowed. 12.1.1      Only one decimal point is allowed. 

Specifications

Specification
CSS Values and Units Module Level 5 # numbers

See also

<integer>

Last modified: Nov 21, 2021, by MDN contributors

Select your preferred language English (US)DeutschEspañolFrançais日本語한국어Português (do Brasil)Русский中文 (简体) 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...

You could also follow me on twitter. I have a couple of youtube channels if you want to see some video related content. RuneScape 3, Minecraft and also a coding channel here Web Dev.

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
Treasure every moment that you have and treasure it more because you shared it with someone special, special enough to spend your time...and remember that time waits for no one.
Unknown
Random CSS Property

font-weight

The font-weight CSS descriptor allows authors to specify font weights for the fonts specified in the @font-face rule. The font-weight property can separately be used to set how thick or thin characters in text should be displayed.
font-weight (@font-face) css reference