What is the difference between background and background-color

What’s the difference between specifying a background color using background and background-color?

Snippet #1

body { background-color: blue; }

Snippet #2

body { background: blue; }

17 Answers
17

Leave a Comment