IE8 中的不透明度取决于位置:相对

发布于 2024-10-26 03:25:08 字数 1393 浏览 1 评论 0原文

我注意到在某些情况下,IE8 中的表单元素无法变得透明。事实证明,它取决于position:relative CSS 标签。下面的 HTML 演示了该问题:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>title</title>

<style type="text/css">

.ie-opaque {
    zoom : 1;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
}

.relative {
    position: relative;
}

</style>


</head>
<body>

    <div class="ie-opaque">
        <form>
        <fieldset>
        <ol>
            <li class="relative">
                <label for="test">label</label>
                <input id="test"/>
            </li>
            <li class="relative">
                <button>push</button>
            </li>
            <li>
                <label for="test">label</label>
                <input id="test"/>
            </li>
            <li>
                <button>push</button>
            </li>
        </ol>
        </fieldset>
        </form>
    </div>

</body>
</html>

在 IE8 中,第 3 项和第 4 项是透明的,而第 1 项和第 2 项则不是。知道为什么吗?

I noticed that in some cases form elements cannot be made transparent in IE8. It turned out to depend on the position:relative CSS tag. The below HTML demonstrates the issue:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>title</title>

<style type="text/css">

.ie-opaque {
    zoom : 1;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
}

.relative {
    position: relative;
}

</style>


</head>
<body>

    <div class="ie-opaque">
        <form>
        <fieldset>
        <ol>
            <li class="relative">
                <label for="test">label</label>
                <input id="test"/>
            </li>
            <li class="relative">
                <button>push</button>
            </li>
            <li>
                <label for="test">label</label>
                <input id="test"/>
            </li>
            <li>
                <button>push</button>
            </li>
        </ol>
        </fieldset>
        </form>
    </div>

</body>
</html>

In IE8 items 3 and 4 are transparent, 1 and 2 are not. Any idea why?

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

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

发布评论

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

评论(2

愚人国度 2024-11-02 03:25:08

在 Internet Explorer 7、8、9 中,非静态子元素不会继承父元素的不透明度。

解决方法:

  • IE9:为父级提供非静态位置。
  • IE8:让孩子继承过滤器样式。
  • IE7:让子级继承过滤器样式并给父级一个非静态位置。

从这里链接:

http://www.jacklmoore.com/notes/ie-opacity-inheritance

In Internet Explorer 7, 8, 9, non-static child elements do not inherit the opacity of the parent.

Workarounds:

  • IE9: Give the parent a non-static position.
  • IE8: Have the child inherit the filter style.
  • IE7: Have the child inherit the filter style and give the parent a non-static position.

Linked from here:

http://www.jacklmoore.com/notes/ie-opacity-inheritance

椒妓 2024-11-02 03:25:08

使用带有“li”的类是不好的做法,因为它们旨在列出具有相似外观的类似信息,我假设 MS 选择忽略对使用类和 ie8 的子元素的支持。 id 不应该。

我建议使用伪类(效果不会在 <= IE8 浏览器上显示),或者如果您需要针对特定​​的 li,则使用 javascript。

Using classes with "li" is bad practice as they were designed for listing similar information with a similar appearance, I'm assuming MS chose to ignore support for child elements with ie8 that use classes & id's that shouldn't.

I would suggest using pseudo classes (effects won't show on <=IE8 browsers), or javascript if you need to target specific li's.

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