簡體   English   中英

鏈接在IE6中不起作用

[英]A link isn't working in IE6

我正在處理以下頁面: http : //jlecologia.com/index.php

我希望單擊整個左側的塊。 在Firefox中可以使用,但在IE6中,光標甚至不會變為手形。 有任何想法嗎?

我建議您將塊樣式(如對LI所做的那樣)移動到實際的鏈接本身。 例如(從樣式表復制)...

#left ul li {
    float: left;
    list-style-type: none;
}

#left ul li a {
    width: 100%; /* You might not need this */
    margin-top: 40px;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px; 
    color: #FFFFFF;
    display: block;
    background-image: url(../images/button-fond.png);
    background-repeat: repeat;
    background-position: 0px 0px;
    text-decoration: none;
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM