2013-01-19 62 views
4

我正在從事這個網站http://zap3d.com/,我遇到問題:使用Internet Explorer(IE)時,我無法點擊兩個鏈接(上傳和下載),但使用Chrome和Firefox可以。鏈接在IE中無法點擊

這裏是我的CSS的上傳按鈕

<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; 
} 

感謝

回答

4

的Internet Explorer的某些版本可能無法在透明背景元素的點擊次數,並在沒有任何內容。在這種情況下,你的元素的不透明度設置爲零:

.upload_button { 
    opacity: 0; 
} 

你會得到相同的無形元素效果,同時保持跨瀏覽器的兼容性。

+1

非常感謝它的工作.. –

+1

@HarshitTailor:請考慮綠色檢查這個答案,如果它符合你的目的。有關如何操作的更多細節 - http://meta.stackexchange.com/questions/23138/how-to-accept-the-answer-on-stack-overflow – verisimilitude