我想<a href="..."><img /></a>
在现有 div 的右上角放置一个标签(链接图像)。
我找到了一种将图像作为背景而不重复的方法,但是,我无法链接图像。我应该使用什么 CSS?
这就是我现在所拥有的:
<div id="footer">
some multi-line commercial text content
</div>
和CSS:
#footer
{
line-height:18px;
position:absolute;
bottom:-230px;
left:0;
width:280px;
}
#footer span
{
font-size:16px;
display:block;
}
我想放在那里的图标和链接是 43x38 大小。页脚 div 的大小为 280x186(在 google chrome 网站管理员的资料中)。