链接在 IE6 中不起作用

发布于 2024-07-24 22:38:41 字数 201 浏览 4 评论 0原文

我正在处理以下页面: http://jlecologia.com/index.php

我想要左侧的整个块都可以点击。 在 Firefox 中没问题,但在 IE6 中光标甚至不会变成手形。 有任何想法吗?

I'm working on the following page: http://jlecologia.com/index.php

I want the whole block at the left to be clickable. In Firefox it's fine, but in IE6 the cursor doesn't even change to a hand. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一个人的旅程 2024-07-31 22:38:41

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

I'd recommend that you move the block styling (like you're doing with the LI) to the actual link itself. So for example (copied from your stylesheet)...

#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;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文