「ここをクリック」のすぐ横にアイコンを配置するにはどうすればよいですか?
以下の 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;
}