我正在尝试链接图片,在html中看起来像这样:
<a href="#" class="image"><img src="logo.png"></a>
在CSS中我有:
.baraMeniu a.image{
display:block;
}
是啊...显示:阻止只是让图像可点击的尴尬尝试。 我很开心,所以请一步一步来。
编辑:我忘了说我的图片有以下属性:
.baraMeniu img{
width:100%;
height:40em;
position:absolute;
z-index:0;/*the image*/
}
.baraMeniu a.image{
/*the clickable image*/
}
.baraMeniu .st{
font-size:2em;
padding-top:0.15em;
padding-left:0.7em;
padding-right:0.5em;
color:orange;
font-family:'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
display:inline;
text-decoration:none;
float:left;
}
.baraMeniu .dr{
font-size:2em;
padding-top:0.15em;
padding-left:0.7em;
padding-right:0.5em;
color:orange;
font-family:'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
display:inline;
text-decoration:none;
float:right;
}
.baraMeniu #ind{
text-indent:20px;
}
答案 0 :(得分:0)
如果您尝试在图片周围打上<a>
标记,则不需要任何特殊技巧。
<a href="SomeLink.html"><img src="logo.png"></a>
这样可以正常工作。
您可以稍后使用CSS或JS更改其外观,悬停效果等。
为清晰起见编辑。而不是通过页面上的元素定位图像,例如a.img.classwhatever{}
为了简单起见,我会给它一个属于它自己的类,或者把它打成div。将CSS应用于班级或ID。
<div class="ImageLink">
<a href="SomeLink.html"><img src="logo.png"></a>
</div>
关于Z指数,请注意。否定意味着它落后于其他一切。