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:
- Background-color
- Background-image
- Background-repeat
- Background-attachment
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
![]()