CSS明确:两者都不起作用

时间:2009-03-18 04:03:24

标签: css xhtml

我似乎遇到了让我的布局正确清除的问题。看this

我无法停止左栏中的项目按下右侧的项目。有人可以帮忙吗?

Screenshot with some pointy arrows (死链接)

1 个答案:

答案 0 :(得分:2)

问题标记/样式似乎是:

<div class="clear" />

这是清除左手div中的浮动,这会在帖子和前贴片段之间产生间隙。

myblog.css (line 166)

#myBlog-wrap div.clear {
clear:right; <--- problem clear
height:1px;
line-height:1px;
margin:0;
padding:0;
}

Here's how firefox 3 renders the page with the clear disabled.

与您的问题无关,但您似乎也有一些IE特定的CSS问题需要解决。绝对考虑为您的网站制作条件ie.css:)

相关问题