消除 IE 中 WordPress 帖子中的空白
我在我的网站上使用 Rodrigo Galindez 的 Modern Clix 的修改版本,并且在 IE 中遇到了我的每一篇帖子顶部都有空白的问题。
该间隙是我左侧边栏的大小,在 Firefox 中不会出现。
例如: http://martiningolf.dk/?page_id=273
如果有人知道如何解决这个问题,它会让我高兴。
I'm using a modified version of Modern Clix by Rodrigo Galindez on my website, and I've encountered a problem with gaps on top of every one of my posts in IE.
The gap is the size of my left-hand sidebar and doesn't appear in firefox.
Ex.: http://martiningolf.dk/?page_id=273
If anyone knows how to solve this problem, It'd make me happy.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来像是浮动问题。
您的左列设置为 float:left,但右列(帖子)不是浮动的 - 它有一个 padding-left 将其推倒:
IE 讨厌填充。
您也可以尝试将右列设置为 float:left 。这可能意味着将其宽度从 80em 减小到更窄的值。
这可能有效:
祝你好运!
Looks like a float issue.
Your left column is set to float:left, but your right column (the post) isn't floating - it has a padding-left that pushes it over:
IE hates padding.
You might try setting the right column to float:left as well. This will probably mean reducing its width from 80em to something narrower.
This may work:
Good luck!