quick simple question In the following example of an external CSS page;
body {
background-image: url(background.jpg);
}
header {
background: url(background.jpg);
}
I understand they are effecting different element selectors, my question is what is the difference between using background vs background-image? Does one have access to specific attributes to the other? Please and thank you.