transparent- Colour. An element can have both a background image and a background color.
The above is equivalent to:
body {
background-color: transparent;
background-image: url('background.jpg');
background-repeat: repeat;
background-attachment: scroll;
}
Color is important in general, if, for example, color. the background image does not load, or the image contains transparent areas, or the image does not repeat to fill the entire area (which admittedly does not apply to your example).
, transparent " ", background, .
, , transparent , :
body.foo { background-color: blue; }
body.foo.bar { background-color: transparent; }