简体   繁体   English

如何删除页脚下方的这个白色 HTML 空间?

[英]How to remove this white HTML space below footer?

I've created a responsive webpage and everything is working fine.我创建了一个响应式网页,一切正常。 I mean the layout for mobile like smartphones and tablets is ok.我的意思是智能手机和平板电脑等移动设备的布局还可以。 If I switch to desktop it looks good too except for the footer and that's because there is an empty white space at the end of the webpage if I click on inspect the browser focus the HTML tag.如果我切换到桌面,它看起来也不错,除了页脚,那是因为如果我点击检查浏览器焦点 HTML 标签,则网页末尾有一个空白区域。

在此处输入图像描述

One thing you have to notice is that the height of this empty space depends on the width of the viewport.您必须注意的一件事是,这个空白空间的高度取决于视口的宽度。 Also I'm using sass.我也在使用 sass。 I can't share all the code here because it's divided across too many files.我不能在这里分享所有的代码,因为它被分成了太多的文件。 If you want to see all the code go here: https://github.com/justanindieguy/podcast-landing-page如果您想在此处查看所有代码 go: https://github.com/justanindieguy/podcast-landing-page

And also you can see the webpage in this github personal page: https://justanindieguy.github.io/podcast-landing-page/您还可以在此 github 个人页面中查看网页: https://justanindieguy.github.io/podcast-landing-page/

Thanks a lot for all your answers.非常感谢您的所有回答。 This is driving me nuts, I can't find the solution.这让我发疯,我找不到解决方案。

I tried the given solutions from others to make sure none already did the trick on your page, but no success.我尝试了其他人提供的解决方案,以确保没有人已经在您的页面上完成了这个技巧,但没有成功。

I then found the reason you're getting the issue.然后我找到了你遇到问题的原因。 It's related to the:before of the news section, it's overflowing from the element.它与新闻部分的:之前有关,它从元素中溢出。

Try adding this CSS:尝试添加这个 CSS:

#news {
    overflow: hidden;
}

Now the news section crops the:before element relative to its own dimensions.现在新闻部分裁剪了相对于其自身尺寸的:before 元素。 I noticed you achieved the layout with skew, but I recommend you to look into clip path generators and create this shape that way.我注意到您使用倾斜实现了布局,但我建议您查看剪辑路径生成器并以这种方式创建此形状。

Add this line to top of your CSS file将此行添加到 CSS 文件的顶部

* {
  padding:0;
  margin: 0;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM