In CSS, it's possible to specify a background image for any element.Here's what the background-image property looks like, in use:
body { background-image: url("http://www.lynda.com/background.png");}And here's the syntax. Note the use of the url() to specifythe location (URI) of the background. (You can also use relative URIs.)
| Property | Value | Notes |
| background-image: | url("<location>") | Set the background to the image at url() |
| background-image: | none | No background image |
| background-image: | inherit | Inherit parent's background image |