页面刷新时的背景图像不再显示

时间:2011-07-06 16:04:33

标签: html css image

我在本地环境中有这个测试页面:

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<link rel="stylesheet" type="text/css" href="mycss.css" />

</head>

<body background="australia_1500.jpg" bgproperties="fixed">

<img id="marker" src="marker.png">
<div class="head"></div>
<div class="content"></div>

</body>

和mycss.css:

.head{
  width:955px;
  height:90px;
  margin:auto;
  background-image:url('head_bg.png');
 }

.content {
  width:955px;
  height:1000px;
  margin:auto;
  background-image:url('pattern_bg.png') !important;
}

#marker{
 position:absolute;
 top:38px;
 left:105px;
}

问题是,在页面刷新时,我的图像通常根本不显示,大多数时候它们是“切换可见性”(如果“head_bg.png”正确显示并且我刷新则此图像消失并且反过来“pattern_bg.png”显示..反之亦然) 这种情况发生在我试过的所有浏览器中(IE8,chrome,firefox)..我尝试使用清除缓存,重新启动Apache服务器..但问题仍然存在。

我错在哪里?

已更新 我的Apache日志错误

PHP Warning:  PHP Startup: apc.shm_size now uses M/G suffixes, please update your ini files in Unknown on line 0


在我的php.ini中,我有以下内容:

extension= c:\wamp\bin\php\php5.3.3\ext\php_apc_316_php53_vc6.dll
apc.enabled=0
apc.stat=0
apc.optimization=9
apc.shm_size=30
;apc.max_file_size=2M

0 个答案:

没有答案