在 ReactJS 上,我的 'root' div 并没有一直向上延伸。我怎样才能扩大它?

On ReactJS, my 'root' div doesn't span all the way up. How can I expand it?

我知道这是一个被多次提及的主题。但是,我尝试过的所有解决方案都不起作用,我来到这里是不得已的选择。

我的根 div 停止的地方:

我已将 html 和正文 CSS 样式设置为:

html, body { height: 100%;   width: 100%; }

在我的 index.css 中。它仍然没有一路上升。

你知道如何解决这个问题吗?

试试这个:

html, body { height: 100%;   width: 100%; margin: 0; padding: 0; }

更新:

我查看了您的页面并发现了问题。当内部元素有边距时,外部元素也会受到影响。移除导航栏的 margin-top。