0

私は次のページに取り組んでいます: http://jlecologia.com/index.php

左側のブロック全体をクリック可能にしたい。Firefox では問題ありませんが、IE6 ではカーソルが手に変わりません。何か案は?

4

1 に答える 1

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;
}
于 2009-06-11T13:46:26.793 に答える