这是HTML:
<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和更新版本中使用它。
答案 0 :(得分:2)
尝试将display:block;
添加到css
答案 1 :(得分:2)
您是否尝试过移动代码?
<h2>
<a onclick="doSomething()" href="#" class="float-right"> </a>
Log in
</h2>