HTML div 与页脚重叠

发布于 2024-11-16 21:37:33 字数 261 浏览 4 评论 0原文

我一直盯着这个页面的萤火虫:

http://www.comehike。 com/outdoors/parks/park.php?park_id=54603

我不明白为什么右侧与底部 div 重叠。可能是因为对我来说已经过了午夜,但有人能告诉我出了什么问题吗?

谢谢, 亚历克斯

I keep staring with firebug at this page:

http://www.comehike.com/outdoors/parks/park.php?park_id=54603

and I can't figure out why the right side is overlapping with the bottom div. It might be because it is past midnight for me, but could anyone tell what is going wrong there?

Thanks,
Alex

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

九歌凝 2024-11-23 21:37:33

删除

height:325px;

之后的 div 中的 。请注意,手动向 HTML 添加 style 信息始终是个坏主意,您应该使用类来实现这一点。


另外,有些语法看起来乱码:

<div width:400px;">

应该是:

<div style="width:400px;">

Remove the

height:325px;

in the containing div, that comes after <!-- End of photos from this park -->. Note that it's always a bad idea to manually add style information to HTML, you should rather use classes for that.


Also, some of the syntax looks garbled:

<div width:400px;">

should be:

<div style="width:400px;">
明天过后 2024-11-23 21:37:33

您有一个高度设置为 325px 的 DIV;

<div style="height:325px; width:400px;">
    <p></p><h2>Hikes Coming Up In The Area</h2><p></p>
.....

删除高度或在CSS中设置overflow:hide/scroll将解决这个问题。

You have a DIV with a height set of 325px;

<div style="height:325px; width:400px;">
    <p></p><h2>Hikes Coming Up In The Area</h2><p></p>
.....

Removing the height or setting overflow:hide/scroll in CSS will fix this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文