CSS background-Shorthand

-

هي خاصية الاختزال والاختصار، بمعني يمكن تجميع خصائص الخلفية في خاصية واحدة، الامر الذي يختصر الكثير من الوقت والجهد

مثال :
بدل من كتابة الكود : 
body {
  background-image: url("img/bellAlert.gif");
  background-repeat: no-repeat;
  background-position: right top;
  background-attachment: local;
}

يمكن اختزاله الى  
body {
    background: #ffffff url("img/bellAlert.gif") no-repeat right top fixed;
}

جميع هذه الخصائص تم اضافتها باستخدام الخاصية background . 
ترتيب الخصائص في Shorthand   في هذ المثال 
background-color
background-image
background-repeat
background-position
background-attachment