为什么这个背景图片在Chrome和FF中工作但不在IE 8中?

时间:2012-07-06 21:46:04

标签: css

CSS

.arrow {
background:url(images/arrow.png) center left no-repeat;
padding-left:23px;
padding-right:10px;
border-right:0px solid #e6e6e6;
margin-right:10px;
}

HTML

<div class="arrow"><h3>Technical Documentation</h3></div>

它在FF和Chrome中运行得很好。该风格正在IE中应用,我知道因为我看到了填充,但是,图像没有出现。

1 个答案:

答案 0 :(得分:1)

这是不正确的语法,请尝试:

background: #000 url(images/arrow.png) center left no-repeat;