mozilla firefox中的background-position y轴问题

时间:2013-02-16 04:47:50

标签: css

我正在努力,那是行不通的。在Chrome中工作得很好但在Mozilla Firefox中没有。这个属性不受支持?还有其他选择吗?

.background {
  background:url('icon.png') no-repeat;
  background-position:0 4;
  width:32px;
  height:40px;
}

刚开始使用CSS。

1 个答案:

答案 0 :(得分:5)

背景位置值需要具有非零位置的单位值。因此,如果您希望图标偏离顶部4px,请将其更改为:

background-position: 0 4px;

你也可以用速记来包括这个位置,如下:

 background: url('icon.png') 0px 4px no-repeat;