Click through div to underlying elements

后端 未结 16 2057
逝去的感伤
逝去的感伤 2020-11-21 06:19

I have a div that has background:transparent, along with border. Underneath this div, I have more elements.

Curre

16条回答
  •  北恋
    北恋 (楼主)
    2020-11-21 06:42

    You can place an AP overlay like...

    #overlay {
      position: absolute;
      top: -79px;
      left: -60px;
      height: 80px;
      width: 380px;
      z-index: 2;
      background: url(fake.gif);
    }
    

    just put it over where you dont want ie cliked. Works in all.

提交回复
热议问题