CSS 数据类型 integer 表示
不需要单位来表示整数值。许多 CSS 属性采用整数值,如 z-index、line-height、column-count、counter-increment、grid-column 等。
有效整数
1, 29, 047, +67, +9086, -9821, -32
无效整数
1.08, -9.86, 9.9t, 4/3
示例 1:
CSS Value Integer
CSS data type integer represents
.
It is a whole number which can be positive(+)
or negative(-) .Integer contains one or more
than one digits between 0-9.No decimal value
is allowed . No units
are required to represent an integer value.
A lot of CSS properties take integer value
like z-index, line-height, column-count,
counter-increment, grid-column etc.
输出
在这个例子中 column-count 输入一个整数。
示例 2:
The z-index Property
输出
在本例中,z-index 输入一个整数。因为图像的 z-index 为 -1,所以它将被放置在标题后面。