谁能告诉我为什么这个加载图像在 Chrome 中显示正常,但在 Internet Explorer 或 Firefox 中显示不正常?它应该只是正常浮动在页面上,但 Firefox 和 IE 似乎将它放在页面的开头。
网站:http ://thc-racing.ucoz.com/
HTML:
<div id="preload">Loading page... <img src="/design/loading.gif" /></div>
CSS:
div#preload {
position: absolute;
bottom: 40px;
right: 50px;
background-image: url('http://thc-racing.ucoz.com/design/loading-bg.png');
padding: 8px;
border-radius: 5px;
border-style: solid;
border-color: #d7d7d7;
border-width: 1px;
font-weight: bold;
align: right;
}
谢谢