:在 IE8 中使用过滤器时,伪元素被裁剪后

发布于 2024-12-20 08:45:07 字数 693 浏览 0 评论 0原文

这是 HTML:

<div id="target"></div>

CSS:

#target {
    position: relative;
    width: 200px;
    height: 200px;
    background: #F00;
    -ms-filter:"progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#F00,endColorstr=#F00)";
}
#target:before {
    content: "content from before";
    position: absolute;
    top: 10%;
    left: 10%;
    width: 100%;
    height: 100%;
    background: cyan;
}

这是 jsfiddle:
http://jsfiddle.net/8BzW6/

如果您评论过滤器,则“after”元素不会被裁剪通过父元素(#target)。

你知道如何解决这个问题吗?

(我需要渐变,但不想使用图像)

This is the HTML:

<div id="target"></div>

CSS:

#target {
    position: relative;
    width: 200px;
    height: 200px;
    background: #F00;
    -ms-filter:"progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#F00,endColorstr=#F00)";
}
#target:before {
    content: "content from before";
    position: absolute;
    top: 10%;
    left: 10%;
    width: 100%;
    height: 100%;
    background: cyan;
}

here is the jsfiddle:
http://jsfiddle.net/8BzW6/

If you comment the filter then the "after" element is not cropped by the parent element (#target).

Do you know how to solve this?

(I need a gradient and I don't want to use an image)

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

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

发布评论

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

评论(1

最终幸福 2024-12-27 08:45:07

对我来说使用微软的过滤器是一种不好的做法,它总是会引起问题。如果你将它与 CSS3 等现代技术结合起来,情况会变得更糟。

使用 data64 使用内联 1px 渐变图像怎么样?

这是一个生成器: http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

Using Microsoft's filter for me is a bad practices, it will always cause issues. And if you combine it with modern technics like CSS3 its getting even worse.

What about using inline 1px gradient image using data64?

Here is a generator: http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

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