這是HTML:HTML/CSS:在H2元素浮動元素
<h2>
Log in
<a onclick="doSomething()" href="#" class="float-right"> </a>
</h2>
這是CSS:
.float-right {
float: right;
background: url(img.png);
width: 10px;
height: 10px;
text-decoration: none;
}
因此,這應該使.float-right
元素浮到文本的右側在標題中,但在IE7中它不是!我不關心IE6,我只需要在IE7和更新版本中使用它。
h2的CSS是什麼?寬度是多少?在h2元素上放一個邊框,看看寬度是多少。 – Zoidberg 2009-11-05 16:08:54
'h2'的CSS只是'font-size','font-weight'和'padding-bottom' ...應該是不相關的。 – 2009-11-05 16:11:56