图像链接在任何浏览器中都不起作用
我对 html/css 很陌生,所以也许这是一件非常简单的事情,但是当我尝试单击网站页面上的图像链接时,图像会显示,但链接永远不会出现,光标也永远不会改变。这是代码的相关部分
<div id="content">
<div id="imagelink">
<a href="#"><img border="0" src="Images/pic.png" alt="A Picture" /></a>
</div>
#imagelink {
background-image:url("Images/file.png");
display:block;
height:224px;
width:401px;
text-indent:-9999px;
position:absolute;
left:15%;
top:25%;
}
Im pretty new to html/css so maybe this is a really simple thing but none of my images links on one page of the site show up when I try to click on them the image shows but the link never appears and the cursor never changes anyway here is the relevant section of code
<div id="content">
<div id="imagelink">
<a href="#"><img border="0" src="Images/pic.png" alt="A Picture" /></a>
</div>
#imagelink {
background-image:url("Images/file.png");
display:block;
height:224px;
width:401px;
text-indent:-9999px;
position:absolute;
left:15%;
top:25%;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尽量不要使用 img 标签,而是使用 div 作为图像:
Try not to use the img tag and instead, use a div for your image: