Home | Computer Science

<
CSS background - Shorthand property

Defination

To shorten the code, it is also possible to specify all the background properties in one single property.


BACKGROUND SHORTHAND PROPERTY Syntax of background - Shorthand property is
body {
background: #ffffff url("img_tree.png") no-repeat right top;
}
Order of Shorthand Property is
For eg: Program
INPUT

<!DOCTYPE html> <html> <head> <style> body { background: lightblue url("img_tree.png") no-repeat right top; } </style> </head> <body> <h1>BACKGROUND-SHORTHAND PROPERTY</h1> </body> </html>.

OUTPUT