当我在R Markdown中使用浮动目录时
title: "HTML page"
output:
html_document:
toc: true
toc_float: true
---
在HTML页面底部的页脚后会产生额外的空格。使用CSS,例如:
html, body {
height: 100%;
padding: 0;
margin: 0;
overflow: auto;
}
无法删除空格。有什么建议么?谢谢!
答案 0 :(得分:0)
我通过修改tocify-extend-page
CSS类来解决了这个问题:
.tocify-extend-page {
height: 0 !important;
}
如果R项目中有一个单独的style.css
文件,则只需将上述代码添加到该文件中。否则,将以下内容添加到您的HTML代码中:
<style>
.tocify-extend-page {
height: 0 !important;
}
</style>