Reputation: 45295
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
Reputation: 168
Yes, here is an example:
body {
background: #aaa
url(../images/foto.jpg) no-repeat
bottom right;
}
Upvotes: 5