html – 点击下面的链接更高的z-index div

前端之家收集整理的这篇文章主要介绍了html – 点击下面的链接更高的z-index div前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。



Possible Duplicate:
07000

是否可以点击红色广场下方的链接没有javascript?红色div不需要可点击.

http://jsfiddle.net/efortis/LNwHV/

#bottom{
 width: 100px;
 height: 100px;
 background-color: orange;
}

#top{
  width: 50px;
  height: 50px;
  position: absolute;
  left:0;
  top:0;
  background-color: rgba(255,.5);
 }

解决方法

这样做的CSS方法pointer-events: none

见:http://jsfiddle.net/LNwHV/1/

浏览器支持http://caniuse.com/pointer-events(除IE10及更早版本以外的其他工作)

为了支持旧版本的IE,您必须使用use JavaScript作为备用.

原文链接:https://www.f2er.com/html/231024.html

猜你在找的HTML相关文章