有没有 z-Index 的替代品并且可以有同样的效果
Is there any alternative to z-Index and can have same effect
我正在做一个项目,z-index
引起了问题,因为在某些情况下 href 标签不起作用,它引起了严重的问题,我想问一下,有没有 z-index
的替代方案并且可以起到同样的作用?
使用 z-index 来 href 锚标签。然后它需要位置 属性.
.anchor1 a{
z-index:10;
position: absolute;
color:green;
}
.anchor2 a{
z-index:100;
position: absolute;
color:red;
}
<span class="anchor1">
<a href ="pingme.html"/>Pingme</a>
</span>
<span class="anchor2">
<a href ="ping.html"/>Ping</a>
</span>
我正在做一个项目,z-index
引起了问题,因为在某些情况下 href 标签不起作用,它引起了严重的问题,我想问一下,有没有 z-index
的替代方案并且可以起到同样的作用?
使用 z-index 来 href 锚标签。然后它需要位置 属性.
.anchor1 a{
z-index:10;
position: absolute;
color:green;
}
.anchor2 a{
z-index:100;
position: absolute;
color:red;
}
<span class="anchor1">
<a href ="pingme.html"/>Pingme</a>
</span>
<span class="anchor2">
<a href ="ping.html"/>Ping</a>
</span>