假设我使用定义多个属性的简写背景属性..例如:
.img
{
background: url('/Content/images/a.png') no-repeat scroll 100% 3px;
}
如果我现在只想覆盖图像的背景位置,我应该使用带有更新位置的完整速记符号,例如:
.img
{
background: url('/Content/images/a.png') no-repeat scroll 0 3px;
}
或者只是覆盖背景位置属性,如:
.img
{
background-position: 0 3px;
}
如果是这样,有什么问题?仅覆盖该位置是否有轻微的性能提升?