欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

css2有序標記項

阮建安2年前7瀏覽0評論

在CSS2中,有許多有序標記項可以用來為列表項指定順序。下面是其中一些常見的有序標記項:

ol {
list-style-type: decimal; /*默認值,每個數字按順序遞增*/ 
}
ol.lower-alpha {
list-style-type: lower-alpha; /*以小寫字母為標記,從a開始*/
}
ol.upper-alpha {
list-style-type: upper-alpha; /*以大寫字母為標記,從A開始*/
}
ol.lower-roman {
list-style-type: lower-roman; /*以小寫羅馬數字為標記,從i開始*/
}
ol.upper-roman {
list-style-type: upper-roman; /*以大寫羅馬數字為標記,從I開始*/
}
ol.lower-greek {
/*以小寫希臘字母為標記,從alpha開始*/
list-style-type: lower-greek; 
}
ol.decimal-leading-zero {
/*每個數字都是兩位數,對于9以下的數字前面自動加上0*/
list-style-type: decimal-leading-zero;
}

使用這些有序標記項能夠讓你的列表具有更多的風格,使得內容結構更加清晰易懂。如果需要定制化的標記,你也可以使用自定義圖片作為標記,這一點可以使用CSS3中的list-style-image屬性來實現。

下一篇html生成vue