Они оба могут безопасно использоваться во всех браузерах.
background
может установить все его податрибуты, такие как background-color, background-image, background-position
и т. Д.
Так что вместо настройки
background-color: #fff; /* white */
background-image: url(path/to/image.png);
background-repeat: repeat; /* or repeat-x, repeat-y, none */
background-position: top center; /* other options include bottom, right, left, along with pixel values and percentages*/
background-attachment: scroll; /* or fixed */
ты можешь написать
background: #fff url(path/to/image.png) top center fixed;