我有一些我无法控制的HTML,但我希望看看我是否可以通过这种方式来实现某种输出。我有一个链接,其中有一个带链接的孩子。我有一个标题是链接的兄弟,但它绝对位于链接的中间。当链接悬停时,您可以单击它,但是当您将鼠标悬停在标题元素上时,您无法单击该链接(因为它不是<a>
的子项而是兄弟)。显然,如果标题是<a>
的后代,我就没有问题。
我有什么选择可以实现我想要的输出吗?正如我所说,我正在设计的HTML无法编辑。下面是HTML和CSS。
最终我希望标题位于链接上方,但仍然允许点击整个链接,无论是否悬停在标题上。
<div id="" class="grid-square">
<a href="# class="widget_sp_image-image-link">
<img width="1920" height="1080" class="attachment-full" style="max-width: 100%;" src="...">
</a>
<div class="title">
<p>TITLE</p>
</div>
</div>
.home-grid .grid-square, .home-grid .grid-rectangle-half {
background-color: #000;
display: block;
font-size: 100%;
margin-bottom: 30px;
overflow: hidden;
position: relative;
}
.home-grid img {
height: 100%;
position: absolute;
width: 100%;
}
.home-grid .title {
color: #fff;
font-size: 4.8em;
font-weight: 600;
font-family: "proxima-nova-alt-condensed";
left: 0;
margin-bottom: 0;
margin-top: 0;
position: absolute;
top: 50%;
text-align: center;
width: 100%;
z-index: 1;
}
答案 0 :(得分:1)
您可以在标题类中将属性pointer-events设置为none,以指示您希望鼠标事件通过标题并定位下面的链接。
在下面的代码段中,您可以向下滚动页面并单击标题或图像以返回到文档顶部。
p {
margin: 0 ;
}
.grid-square {
position: relative ;
width: 300px ;
height: 800px ;
line-height: 800px;
}
.home-grid img {
position: absolute;
width: 100%;
height: 100%;
}
.home-grid .title {
position: absolute;
pointer-events: none;
color: #fff;
font-size: 4.8em;
font-weight: 600;
font-family: "proxima-nova-alt-condensed";
width: 100%;
text-align: center;
vertical-align: middle;
z-index: 1;
}
&#13;
<div class="home-grid">
<div class="grid-square">
<a href="#top" class="widget_sp_image-image-link">
<img class="attachment-full" src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/Mona_Lisa%2C_by_Leonardo_da_Vinci%2C_from_C2RMF_retouched.jpg/550px-Mona_Lisa%2C_by_Leonardo_da_Vinci%2C_from_C2RMF_retouched.jpg">
</a>
<div class="title">
<p>TITLE</p>
</div>
</div>
</div>
&#13;