<time-percentage>

<time-percentage> CSS 資料型別表示一個可以是 <time><percentage> 的值。

語法

有關此型別允許的單獨語法的詳細資訊,請參閱 <time><percentage> 的文件。

正式語法

<time-percentage> = 
<time> |
<percentage>

示例

在 calc() 中使用

如果 <time-percentage> 被指定為允許的型別,這意味著百分比會解析為時間,因此可以在 calc() 表示式中使用。

有效的百分比

50%
+50%        Optional plus sign
-50%        Negative percentages are not valid for all properties that accept percentages

無效的百分比

50 %        Space not allowed between the number and the percentage sign

有效的時間

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

無效的時間

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.

規範

規範
CSS 值和單位模組第 4 級
# typedef-time-percentage

另見