我正在努力,那是行不通的。在Chrome中工作得很好但在Mozilla Firefox中没有。这个属性不受支持?还有其他选择吗?
.background {
background:url('icon.png') no-repeat;
background-position:0 4;
width:32px;
height:40px;
}
刚开始使用CSS。
答案 0 :(得分:5)
背景位置值需要具有非零位置的单位值。因此,如果您希望图标偏离顶部4px,请将其更改为:
background-position: 0 4px;
你也可以用速记来包括这个位置,如下:
background: url('icon.png') 0px 4px no-repeat;