工作了几个小时,无法弄清楚。我只是想在 IE8 中显示背景图像。它在 Chrome 和 Firefox 中运行良好,但不会在 IE8 中显示。
它基本上是一个 iframe,我在其中显示网页内容,但是当网页加载或刷新页面时,在您单击导航中的链接之前,它只是一个白框,我希望白框中有公司徽标它。
我尝试了多种图像格式(24 位、8 位、JPG、PNG 等)和多种不同的图像,但在 IE8 中似乎没有呈现任何内容。
代码 :
<!DOCTYPE html>
<html class="no-js">
<body>
<iframe allowtransparency="true" name="printer"></iframe>
<style type="text/css">
iframe {
width: 84%;
height: 800px;
float: right;
background:transparent url(logoopac.png) no-repeat center;
}
</style>
</body>
</html>
任何帮助将不胜感激。