Style backgroundSize attribute
- Forrige side backgroundOrigin
- Næste side backfaceVisibility
- Gå tilbage til forrige niveau HTML DOM Style objekt
Definition and usage
backgroundSize
Sets or returns the size of the background image.
See also:
HTML Style:background property
CSS Tutorial:CSS baggrund
CSS3 Tutorial:CSS3 Background
CSS Reference Manual:background-size property
Example
Specify the size of the background image:
document.getElementById("myDIV").style.backgroundSize = "60px 120px";
Syntax
Returns the backgroundSize property:
object.style.backgroundSize
Sets the backgroundSize property:
object.style.backgroundSize = "auto|length|cover|contain|initial|inherit"
Attribute value
Value | Description |
---|---|
auto | Default value. The background image includes its width and height. |
length |
Sets the width and height of the background image. The first value sets the width, and the second value sets the height. If only one value is given, the second is set to "auto". |
percentage |
Sets the width and height of the background image as a percentage of the parent element. The first value sets the width, and the second value sets the height. If only one value is given, the second is set to "auto". |
cover |
Scales the background image to be as large as possible so that the background area is completely covered by the background image. Some parts of the background image may not be in the background positioning area. |
contain | Scales the image to the maximum size so that its width and height both fit the content area. |
initial | Sets this property to its default value. See initial. |
inherit | Inherits this property from its parent element. See inherit. |
Technical details
Default value: | auto |
---|---|
Return value: | A string that represents the element's background-size property. |
CSS version: | CSS3 |
Browser support
backgroundSize
Is a CSS3 (1999) feature.
All browsers fully support it:
Chrome | Edge | Firefox | Safari | Opera | IE |
---|---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera | IE |
Supporter | Supporter | Supporter | Supporter | Supporter | 11 |
- Forrige side backgroundOrigin
- Næste side backfaceVisibility
- Gå tilbage til forrige niveau HTML DOM Style objekt