浮动容器中的 Img 在资源管理器中不可单击

发布于 2024-10-16 18:15:25 字数 900 浏览 2 评论 0原文

我有一个锚元素,其中有一个包含图像和标题的 div“imgbox”,以及一个包含一些文本的 div“textbox”。

现在,当我浮动 div.imgbox 时,里面的 img 元素不再可点击; div.textbox 中的标题和文本是。这只发生在 Internet Explorer 中;所有其他浏览器都工作正常。

有谁知道是什么原因造成的(以及如何解决它)?谢谢!

这是我正在使用的 css 和 html:

<style>
    .wrap a {
        display: block;
        overflow: hidden;/* makes this a wrap around floats */
        cursor: pointer;
    }
    .imgbox {
        float: left;
    }
    .textbox {
        overflow: hidden;/* positions the div next to the float */
    }
</style>

<div class="wrap">
    <a href="#">
        <div class="imgbox">
            <img src="http://jaron.nl/misc/dummy.gif" width="80" height="45" alt="" />
            caption text is clickable
        </div>
        <div class="textbox">
            some text here
        </div>
    </a>
</div>

I have an anchor element with in it a div "imgbox" containing an image and a caption, and a div "textbox" containing some text.

Now when I float the div.imgbox, the img element inside is no longer clickable; the caption and the text in the div.textbox is. This only happens in Internet Explorer; all other browsers work just fine.

Does anyone know what's causing this (and how to solve it)? Thanks!

here's the css and html I'm using:

<style>
    .wrap a {
        display: block;
        overflow: hidden;/* makes this a wrap around floats */
        cursor: pointer;
    }
    .imgbox {
        float: left;
    }
    .textbox {
        overflow: hidden;/* positions the div next to the float */
    }
</style>

<div class="wrap">
    <a href="#">
        <div class="imgbox">
            <img src="http://jaron.nl/misc/dummy.gif" width="80" height="45" alt="" />
            caption text is clickable
        </div>
        <div class="textbox">
            some text here
        </div>
    </a>
</div>

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

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

发布评论

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

评论(1

浸婚纱 2024-10-23 18:15:25

您在 img 和 link tag 之间的 div 中使用了 Block 元素。

You are using Block element in div in between the img and a link tag .

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