📜  CSS |值整数

📅  最后修改于: 2021-08-29 12:12:00             🧑  作者: Mango

CSS 数据类型 integer 表示它是一个整数,可以是正(+)或负(-)。整数包含 0-9 之间的一位或多位数字。不允许使用十进制值。
不需要单位来表示整数值。许多 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,所以它将被放置在标题后面。