如何隐藏右侧目录中的水平滚动条?
How to hide horizontal scrollbar in right side TOC?
我正在使用 asciidoctor-maven-plugin 来生成 asciidoctor。
输出包含右侧 TOC。
当此目录中的链接变大时,目录会显示水平滚动条。
我可以通过 asciidoctor-maven-plugin 添加一些简单的 css 来轻松禁用它吗?
是的,这是asciidoctor.css
中的默认定义:
#toc.toc2 {
width: 20em;
}
在自己的 css 文件副本 (my-theme.css
) 中将此更改为您的要求,并通过以下方式在 asciidoctor-maven-plugin 中使用它:
<configuration>
<attributes>
<stylesheet>my-theme.css</stylesheet>
</attributes>
</configuration>
我正在使用 asciidoctor-maven-plugin 来生成 asciidoctor。 输出包含右侧 TOC。
当此目录中的链接变大时,目录会显示水平滚动条。
我可以通过 asciidoctor-maven-plugin 添加一些简单的 css 来轻松禁用它吗?
是的,这是asciidoctor.css
中的默认定义:
#toc.toc2 {
width: 20em;
}
在自己的 css 文件副本 (my-theme.css
) 中将此更改为您的要求,并通过以下方式在 asciidoctor-maven-plugin 中使用它:
<configuration>
<attributes>
<stylesheet>my-theme.css</stylesheet>
</attributes>
</configuration>