IE6中的链接不起作用

时间:2009-06-11 13:29:25

标签: html internet-explorer-6 hyperlink href

我正在开展以下页面:http://jlecologia.com/index.php

我希望左侧的整个块可以点击。在Firefox中它很好,但在IE6中,光标甚至不会改变。有什么想法吗?

1 个答案:

答案 0 :(得分:2)

我建议您将块样式(就像您正在使用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;
}