PandoraU.U.D
0
Q:

css background shorthand

/*CSS background Property

Example
Set different background properties in one declaration:
*/
body
 { 
   background: lightblue url("img_tree.gif") no-repeat fixed center; 
 } 
 
8
/* Color (Example: red): */
html,body {
  background-color: red;
}

/* Image (Example: your.picture): */
html,body {
  background-image: url("your.picture");
}
5
body {
  background: #ffffff url("img_tree.png") no-repeat fixed right top;
}
4

body {
  background: #ffffff url("img_tree.png") no-repeat right top;
} 
1

New to Communities?

Join the community