CSS 中的 MS IE 相对路径语法

发布于 2024-10-20 01:56:16 字数 585 浏览 2 评论 0原文

我正在使用以下 CSS 代码:

body
{
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='//images/homebg.png', sizingMethod='scale');
  -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='//images/homebg.png', sizingMethod='scale')";
  background-image: url('../images/homebg.png');
}

如您所见,我想在此页面上的 MS IE 中覆盖背景图像。此 CSS 代码位于 /styles/ 目录中,而图像位于 /images/ 目录中

如何在此 CSS 代码中声明背景图像的相对路径?

另外,我是否以正确的方式执行此操作 - 即应用 AlphaImageLoader 过滤器来实现 CSS background-size: cover; 效果?

谢谢!

I am using the following CSS code:

body
{
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='//images/homebg.png', sizingMethod='scale');
  -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='//images/homebg.png', sizingMethod='scale')";
  background-image: url('../images/homebg.png');
}

As you can see I want to cover a background image in MS IE on this page. This CSS code sits in a /styles/ directory whereas the image is in the /images/ directory

How do I declare a relative path to the background image from within this CSS code?

Also, am I doing this the right way- i.e. apply the AlphaImageLoader filter to achieve the CSS background-size: cover; effect?

Thanks!

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

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

发布评论

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

评论(1

亽野灬性zι浪 2024-10-27 01:56:16

您是否尝试过输入

../images/homebg.png

至于过滤器本身,对我来说看起来还不错。

Have you tried entering

../images/homebg.png

As for the filter itself, it looks okay to me.

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