Whenever I utilize a floating table of content in my R Markdown:
title: "HTML page"
output:
html_document:
toc: true
toc_float: true
---
An issue arises where there is extra whitespace after the footer at the bottom of the HTML page. Even when trying to modify it using CSS like:
html, body {
height: 100%;
padding: 0;
margin: 0;
overflow: auto;
}
The blank space persists despite these adjustments. Do you have any suggestions on how to resolve this? Thank you!