如何在“单击此处”旁边对齐图标?
我可以使用下面的 CSS 来完成它,但是在 PC 上使用 firefox、chrome 和 safari 时,图标没有对齐。
<div class="link_container">
<a href="#" class="click_action">Click here</a>
<a class="sprite_image action_image"></a>
</div>
.link_container {
margin-top: -10px;
padding-bottom: 10px;
}
.click_action {
color: #999;
font-size: 12px;
text-decoration:none;
}
.sprite_image {
background: url('sprite.png');
}
.action_image {
background-repeat: no-repeat;
background-position: -116px -12px;
width: 10px;
height: 10px;
position: absolute;
margin-left: 3px;
margin-top: 4px;
}