gpt4 book ai didi

internet-explorer-8 - IE8 中的分层背景

转载 作者:行者123 更新时间:2023-11-28 10:23:14 24 4
gpt4 key购买 nike

background-image: url('/images/tenticles.png'), url('/images/header.png');

我有上面的代码,它适用于 Firefox 和 Chrome。但是它在 IE8 中不起作用。我想知道是否有办法解决这个问题。类似于 HTML5shiv。

最佳答案

IE 缺少 multiple background support 有多种解决方法.其中一种技术涉及简单地创建一个跨越整个页面的 div,并将其背景与 body 元素的背景一起设置。必要时可以重复此技术。例如:

body { background-url('/images/tenticles.png'); }
#background1 { background-url('/images/header.png'); }

<body>
<div id="background1">
</div>
</body>

但是,您似乎想要类似于 CSS3 PIE (Progressive Internet Explorer) 的东西,它“使 Internet Explorer 6-8 能够呈现几个最有用的 CSS3 装饰功能”。来自 PIE 的网站:

PIE currently has full or partial support for the following CSS3 features:

  • border-radius
  • box-shadow
  • border-image
  • multiple background images
  • linear-gradient as background image

Other features are under active development.

请注意 this question非常相似,并且有很多其他有用的信息和技术。

关于internet-explorer-8 - IE8 中的分层背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5034735/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com