Style backgroundImage Property
- Previous Page backgroundColor
- Next Page backgroundPosition
- Go Up One Level HTML DOM Style Object
Definition and Usage
backgroundImage
Set or return the background image of the element.
Tip:In addition to the background image, you should also specify the background color. If the image is not available, the background color will be used.
See also:
HTML Styles:background property
CSS Tutorial:CSS Background
CSS3 Tutorial:CSS3 Backgrounds
CSS Reference Manual:background-image property
Instance
Example 1
Set the background image for the document:
document.body.style.backgroundImage = "url('img_tree.png')";
Example 2
Set the background image of the specific <div> element:
document.getElementById("myDiv").style.backgroundImage = "url('img_tree.png')";
Example 3
Return the background image of the specific <div> element:
alert(document.getElementById("myDiv").style.backgroundImage);
Example 4
Return the background image of the document:
alert(document.body.style.backgroundImage);
Syntax
Return the backgroundImage property:
object.style.backgroundImage
Set the backgroundImage property:
object.style.backgroundImage = "url('URL')|none|initial|inherit"
Property value
Value | Description |
---|---|
url('URL) | The location of the image file. |
none | No background image. Default. |
initial | Set this property to its default value. See initial. |
inherit | Inherit this property from its parent element. See inherit. |
Technical details
Default value: | none |
---|---|
Return value: | A string that represents the background image. |
CSS version: | CSS1 |
Browser support
backgroundImage
It is a CSS1 (1996) feature.
All browsers fully support it:
Chrome | Edge | Firefox | Safari | Opera | IE |
---|---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera | IE |
Support | Support | Support | Support | Support | Support |
- Previous Page backgroundColor
- Next Page backgroundPosition
- Go Up One Level HTML DOM Style Object