0

我想<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 网站管理员的资料中)。

4

2 回答 2

3

使容器位置:相对

使图像位置:绝对;右:0px;

于 2013-04-07T09:20:28.697 回答
1

用这个:-

<div class="ImageDiv">
    <a href="#" class="hiddenlink"></a>
</div>

.ImageDiv {
    background-image: url(someurl);
    position: relative; //parent div has to be relative position for absolute position children to stay in it.
}
.hiddenlink {
    The way you want to do.
}
于 2013-04-07T09:21:31.927 回答