<time>
Quick Summary for time#s
The <time> CSS data type represents a time value expressed in seconds or milliseconds. It is used in animation, transition, and related properties.
Code Usage for time#s
    12s         Positive integer     -456ms      Negative integer     4.3ms       Non-integer     14mS        The unit is case-insensitive, although capital letters are not recommended.     +0s         Zero with a leading + and a unit     -0ms        Zero with a leading - and a unit 
More Details for time#s

<time>

The <time> CSS data type represents a time value expressed in seconds or milliseconds. It is used in animation, transition, and related properties.

Syntax

The <time> data type consists of a <number> followed by one of the units listed below. Optionally, it may be preceded by a single + or - sign. As with all dimensions, there is no space between the unit literal and the number.

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 0s or 0ms.

Units

s

Represents a time in seconds. Examples: 0s, 1.5s, -60s.

ms

Represents a time in milliseconds. Examples: 0ms, 150.25ms, -60000ms.

Note: Conversion between s and ms follows the logical 1s = 1000ms.

Examples

Valid times

    12s         Positive integer     -456ms      Negative integer     4.3ms       Non-integer     14mS        The unit is case-insensitive, although capital letters are not recommended.     +0s         Zero with a leading + and a unit     -0ms        Zero with a leading - and a unit 

Invalid times

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

Specifications

Specification
CSS Values and Units Module Level 5 # time

See also

<time-percentage> CSS Values and Units

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...

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
In this case my anchor this week becomes driving almost 2hrs outside of Atlanta to one of my favorite hard core gyms in the world.. MetroFlex aka The Dungeon. The gym owners turn the heat way up so it becomes a fun sweat box and the gym members just watch from afar and leave me alone. I happily drive myself long distances to find MY ANCHOR. Our anchor allows us to have balance, focus and be as productive as possible. And if you're in the middle of a heavy set and your headphones start to fall off your head, like mine did here.. well.. f*ck the headphones. Let em break and fall. You can always get a new pair, but the iron ain't ever gonna lift itself.
Unknown
Random CSS Property

grid-column-start

The grid-column-start CSS property specifies a grid item's start position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement. This start position defines the block-start edge of the grid area.
grid-column-start css reference