Closed He1o closed 2 years ago
这个其实涉及css
中ol
,即有序列表的样式问题,需要在hollow/source/css/toc.styl
中设置
找到以下这一段
#article-toc-inner .toc-item {
height: 2em;
line-height: 2em;
padding: 0;
margin: 0;
}
在这里可以统一设置所有列表的样式,如果想要去掉,需要加上list-style-type: none;
,即改为
#article-toc-inner .toc-item {
list-style-type: none;
height: 2em;
line-height: 2em;
padding: 0;
margin: 0;
}
效果预览:
@He1o
一共三个序号,我把list_number改为false第二个就没了 第三个是我自己的 可第一个序号怎么才能去掉?