当站点在 LOCALHOST 上时,这种 css 样式在所有浏览器上都能完美运行。但是当我将网站上传到实时服务器时,它也适用于除 IE 之外的所有浏览器。
背景图像不显示。
.button {
font-family:Arial, Helvetica, sans-serif;
display:inline-block;
position:relative;
background:url(../images/button-bg.gif) 0 0 repeat-x #3b3d3e;
border:1px solid #3b3d3e;
font-size:11px;
color:#fff;
font-weight:bold;
text-decoration:none;
padding:1px 9px;
margin-right:7px;
border-radius:2px;
-moz-border-radius:2px;
-webkit-border-radius:2px;
behavior:url(js/PIE.htc);
}
注意:如您所见,我将颜色#3b3d3e 与背景一起使用,当页面加载时,我会在几秒钟内看到这种颜色,然后它就消失了。
这有什么问题?