首页 > 解决方案 > asciidoctor 增加 toc 宽度

问题描述

我正在用 asciidoc 重写AssertJ的文档,我想增加 TOC 的宽度和内容的整体宽度(以填充空白区域)

我查看了 asciidoctor.css 并发现我可以将此属性从 toc2 宽度从 20 增加到 25em 但它搞砸了

  #toc.toc2 {
    /* initially 20em */
    width: 25em
  }

  #header,
  #content,
  #footnotes,
  #footer {
  width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    /* initially 75em,  increasing it to 100em does not play with toc when toc is increased */
    max-width: 100em;
    *zoom: 1;
    position: sticky;
    padding-left: .9375em;
    padding-right: .9375em
  }

我很高兴这个新的 TOC 宽度,但问题是当缩小窗口时,内容被 TOC 隐藏,如屏幕截图所示:(

我不是网络开发人员,我尝试了一些没有成功的事情,可以帮助我正确设置或指向好的资源吗?

在此处输入图像描述

标签: cssasciidoctor

解决方案


您需要在两个地方更改 css。

body.toc2 {
   padding-left: 26em;
}

#toc.toc2 {
    /* initially 20em */
    width: 25em;
}

身体的那个会1em比你想要的宽度多。

结果

结果


推荐阅读