CSS 中的 MS IE 相对路径语法
我正在使用以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过输入
至于过滤器本身,对我来说看起来还不错。
Have you tried entering
As for the filter itself, it looks okay to me.