单击图像时,我正在尝试获取指向正常工作的页面的链接。在这个jsFiddle 上,您将看到三个圆形图像。当鼠标悬停在其中任何一个上时,将呈现背景阴影图像。当您单击“律师事务所”图像时,应该会显示一个带有一些文本的简短 HTML 页面。所发生的情况是,指向律师事务所文本的链接不是作为图像本身呈现,而是作为“>”字符呈现 - 请参见下面的屏幕截图。
谁能指导我如何使图像充当链接?还确保当鼠标悬停在背景图像上时,背景图像继续位于律师事务所图像的中心。
CSS:
.center {text-align: center;}
#sfimages {padding:15px;}
#sfimages:hover {
background-image: url(http://ubuntuone.com/1SRrDB8i8cBtpm3Smxaz5r);
background-repeat: no-repeat;
background-position:center;
}
HTML:
<body>
<table style="width: 100%">
<tr>
<td class="center">
<div id="sfimages">
<a href="http://ubuntuone.com/3JHwAhFuNUCVfq1QOOjBGG"> >
<object type="image/svg+xml"
data="http://ubuntuone.com/5b5ZUS86nHAffWiOirDwFr">
<img src="http://ubuntuone.com/12qOaTGCZYzQtqFJpaGbPV" alt="" />
</object>
</a>
</div>
</td>
<td class="center">
<div id="sfimages">
<object type="image/svg+xml"
data="http://ubuntuone.com/6tkHm9c2r1eH9PMB9Nr3Ux">
<img src="http://ubuntuone.com/54AaqhQUU8npACF2vXzKFp" alt="" />
</object>
</div>
</td>
<td class="center">
<div id="sfimages">
<object type="image/svg+xml"
data="http://ubuntuone.com/7Ur09JXlGVvF2GhXFbLXlx">
<img src="http://ubuntuone.com/4CXw05d1dsSf9VhAIPNZf6" alt="" />
</object>
</div>
</td>
</tr>
</table>