CSS HTML 奇怪的空白
我正在创建一个网站,页面底部有一个奇怪的空白(仅限 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试添加这些:
我没有 IE8 来测试,但我确实使用“IE tester”程序,它向我展示了问题。
try adding those:
i don't have IE8 to test on but i do use "IE tester" program which showed me the problem.
如果您使用 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.
对相关元素尝试使用
display:block
和/或margin:0
和/或padding:0
。其中之一将成为罪魁祸首。Try
display:block
and/ormargin:0
and/orpadding:0
for the element in question. One of them is going to be the culprit.