链接在IE中无法点击

时间:2013-01-19 10:21:20

标签: html css internet-explorer

我正在使用此网站http://zap3d.com/,我遇到了问题:使用Internet Explorer(IE)我无法点击两个链接(上传和下载),但我可以使用Chrome和Firefox。

这是我的上传按钮

<a href="/User/Upload/" class="button_big upload_button"></a>
.upload_button {
    position: absolute;
    left: 47px;
    bottom: 28px;
    width: 237px;
    height: 41px;
    border: none;
    background: transparent;
}

由于

1 个答案:

答案 0 :(得分:4)

某些版本的Internet Explorer可能无法在具有透明背景且其中没有内容的元素上注册点击。在这些情况下,将元素的不透明度设置为零:

.upload_button {
    opacity: 0;
}

您将获得相同的不可见元素效果,同时保持跨浏览器兼容性。