自定义列表样式 #
你可以 add following custom CSS (opens new window) ,自定义列表的样式。
有序列表样式 #
数字(默认样式)
ol {list-style-type:decimal;}
。
数字(含前导 0)
ol {list-style-type: decimal-leading-zero;}
。
中国数字
ol {list-style-type: cjk-ideographic;}
。
平假名
ol {list-style-type: hiragana;}
。
片假名
ol {list-style-type: katakana;}
。
字母表
ol {list-style-type: lower-alpha;}
ol
字母表(大写字母)
ol {list-style-type: upper-alpha;}
ol
希腊语
ol {list-style-type: lower-greek;}
。
罗马数字 (小写)
ol {list-style-type: lower-roman;}
。
罗马数字(大写字母)
ol {list-style-type: upper-roman;}
。
无序列表的样式 #
循环
"ul {list-style-type: circle;}"。
圆盘
ul {list-style-type: disc;}
。
正方形
"ul {list-style-type: square;}"。
定制内容
ul {list-style-type:"* ";}
定制内容
ul {list-style-type:"😎 ";}
嵌套列表 #
你也可以使用 CSS 选择器改变嵌套列表的样式,例如。
ol {
list-style-type: decimal;
}
ol ol {
list-style-type: lower-alpha;
}
ol ol ol{
list-style-type: lower-roman;
}
这将渲染出这样的列表。
任务列表 #
请 check document here (opens new window)
更多款式 #
你可以在 here (opens new window) 找到更多的列表样式。