CSS HTML 奇怪的空白

发布于 2024-12-07 10:50:36 字数 231 浏览 0 评论 0原文

我正在创建一个网站,页面底部有一个奇怪的空白(仅限 IE)。野生动物园很好。我正在使用ie8。

我希望白色背景在黑色导航链接之后结束。

http://www.applezone.com.hk/newrx/

我不明白CSS 的哪一部分导致了该空白。

谢谢。

I am creating a website and there's a strange white space at the bottom of the page (only at IE). safari is fine. i am using ie8.

I want the white background ended after that black navigation links.

http://www.applezone.com.hk/newrx/

I can't figure out which part of the css causing that white space.

Thanks.

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

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

发布评论

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

评论(3

我是有多爱你 2024-12-14 10:50:36

尝试添加这些:

.navlink{
  display: inline-block;
  margin-left: 51px;
}

我没有 IE8 来测试,但我确实使用“IE tester”程序,它向我展示了问题。

try adding those:

.navlink{
  display: inline-block;
  margin-left: 51px;
}

i don't have IE8 to test on but i do use "IE tester" program which showed me the problem.

鯉魚旗 2024-12-14 10:50:36

如果您使用 Firebug(Firefox 插件),您可以选择该空白区域,它会显示它在DOM,即实际生成它的 HTML 是什么 - 它属于哪个元素。

您还可以即时打开和关闭个别样式。

在 IE 中相当于按 F12 并获取“开发人员工具”控制台。查找->单击选择元素。

If you use Firebug (Firefox add-on) you can select that white space and it will show you where it is in the DOM, i.e. what the HTML is that is actually generating it - which element it's part of.

You can also switch on and off the individual styles on the fly.

The equivalent in IE is to hit F12 and get the 'Developer Tools' console. Find -> Select Element by Click.

似狗非友 2024-12-14 10:50:36

对相关元素尝试使用 display:block 和/或 margin:0 和/或 padding:0 。其中之一将成为罪魁祸首。

Try display:block and/or margin:0 and/or padding:0 for the element in question. One of them is going to be the culprit.

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