我一直在尝试使用纯 css 在网站上制作覆盖悬停效果
<div class="col-md-4 port-show">
<img class="img-responsive" alt="" src="">
<h2 class=""></h2>
<ul>
<li></li>
<li></li>
</ul>
</div>
但是当我将鼠标悬停在覆盖不会触发的 img 上时,我遇到了问题。我知道我必须以不同的方式做,但现在不要这样做。CSS:
:hover:after{
content: "";
z-index: 10;
display: block;
position: absolute;
height: 100%;
top: 0;
left: 0;
right: 0;
background: red;
border-radius: 6px;
border-color: transparent;
}