ceth
ceth

Reputation: 45295

Background color and background in one time

Is it possible to use background and background-color for body in one time?

body {
    background-color: #AAA;
background: url(../images/foto.jpg) no-repeat bottom right; 
}

Background-color works only if I remove background.

Upvotes: 4

Views: 744

Answers (1)

Robert Mills
Robert Mills

Reputation: 168

Yes, here is an example:

body {
  background: #aaa
  url(../images/foto.jpg) no-repeat
  bottom right;
}

Upvotes: 5

Related Questions