我正在尝试使<aside>
元素可点击。里面有元素,我不希望链接单独应用,我希望它是一个可点击的元素。
<aside class="projectindicator">
<a href="#projectAnchor">
<img src="_img/showcase/downArrowProjects.png" alt="down cursor"/>
<h1>PROJECT</h1>
<img src="_img/showcase/downArrowProjects.png" alt="down cursor"/>
</a>
</aside>
/*Project display*/
.projectindicator{
width: 277px;
height: 35px;
position: relative;
top: 530px;
left: 360px;
text-transform: uppercase;
}
.projectindicator img{
float: left;
}
.projectindicator h1{
float: left;
padding: 0 10px 0 10px;
}
.projectindicator a{
display: block;
font-family: book;
font-size: 30px;
float: left;
}
.projectindicator a:link, .projectindicator a:visited{
text-decoration: none;
color: #2b3a42;
}
.projectindicator a:hover{
text-decoration: none;
color: #3f5765;
}
.projectindicator a:active{
text-decoration: none;
color: #2b3a42;
}
问题在于我获得了元素下方的可点击区域,并且可点击区域小于旁边元素。这使用户很难点击链接。
简单但我找不到解决方案。有人能帮助我吗?
答案 0 :(得分:1)
在.projectindicator a
中,您添加了float: left
,但这会导致链接缩小到其内容的大小。我会删除它。
.projectindicator
本身包含高度,而链接没有高度。我要么为链接本身添加高度,要么给出链接height: 100%
。
最后但并非最不重要:确保.projectindicator
本身没有任何填充,并且其中的链接没有任何边距。