1

我有一个导航栏,它在我的页面底部一直运行我正在使用指针事件,因此允许用户单击导航栏,但我有带有链接的图像,因为有一个指针事件,所以现在不起作用:无; .

我如何在页脚中的图像上允许指针事件,而不是页脚本身?

#footer {
    position:fixed;
    left:0px;
    bottom:0px;
    height:80px;
    width:100%;
    padding-top: 0px;
    background-position: top !important;
     pointer-events:none;

}
4

1 回答 1

4
#footer a {
  pointer-events:  auto;
}
于 2012-05-17T15:06:54.857 回答