0

net,我想使用 div 标签显示图像。我正在使用以下 div 来执行此操作。我的 div 是

<div style="background: transparent url('arrow_left.png') no-repeat center center; width:32px; height: 32px;"></div>

4

2 回答 2

0

这个对我有用:

 <div style="background: transparent  url('http://cdn.sstatic.net/stackoverflow/img/sprites.png?v=5') no-repeat  top left; width:132px; height: 132px;"></div>

->使用速记属性时,属性值的顺序为:

background-color
background-image
background-repeat
background-attachment
background-position

http://jsbin.com/upudow/2/edit

于 2012-08-13T07:50:32.740 回答
0

检查这个:

  1. 图像存在(尝试使用 normal <img>
  2. 检查 div 是否实际具有宽度和高度,您可以为此使用 FireBug 或使用本机浏览器调试工具。
  3. 您在某些用户控件中使用此 Div 吗?检查好路径问题
于 2012-08-13T08:13:36.833 回答