You are here: Reference > JavaScript > client-side > style handling > properties > backgroundPosition
backgroundPosition style property
Sets or retrieves the position of the backgroundImage within the element.
Syntax:
You can find the related objects in the Supported by objects section below.
This property is read/write.
CSS page for this property: background-position |
Possible values:
The type of this property is string.
One of the following values: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Description of values:
Background is aligned to the bottom. | |||||||
Background is centered. | |||||||
The horizontal position of the background in length units. For the supported length units, see the length page. | |||||||
The horizontal position is the specified percentage of the width of the object. | |||||||
Takes the value of this property from the computed style of the parent element. | |||||||
Background is aligned to the left. | |||||||
Background is aligned to the right. | |||||||
Background is aligned to the top. | |||||||
The vertical position of the background in length units. For the supported length units, see the length page. | |||||||
The vertical position is the specified percentage of the height of the object. |
Default: 0% 0%.
If only one value is set and it can be a horizontal position, the vertical position is set to 50%. If the only value cannot be a horizontal position, the horizontal position is set to 50%.
Example HTML code 1:
This example illustrates the use of the background-position property:
|
||||
<head> <style> .example { background-image: url("bg.jpg"); background-repeat: no-repeat; width: 200px; height: 200px; border:1px solid #CCCCCC; } .centerTop { background-position: center top; } .leftBottom { background-position: left bottom; } </style> </head> <body> <div class="example centerTop" style=" float:right;"> The image is at the center top of this division. </div> <div class="example leftBottom"> The image is at the left bottom of this division. </div> </body> |
||||
|
||||
Did you find this example helpful?
|
Example HTML code 2:
This example illustrates the use of the backgroundPosition property in JavaScript:
|
||||
<head> <style> .example { background-image: url("bg.jpg"); background-repeat: no-repeat; background-position: center top; width: 200px; height: 200px; border:1px solid #CCCCCC; } </style> <script type="text/javascript"> function ChangeBgPos () { var selectTags = document.getElementsByTagName ("select"); var selectState = []; for (i = 0; i < selectTags.length; i++) { // Returns the index of the selected option var whichSelected = selectTags[i].selectedIndex; // Returns the text of the selected option selectState[i] = selectTags[i].options[whichSelected].text; } var div = document.getElementById ("myDiv"); div.style.backgroundPosition = selectState[0] + " " + selectState[1]; } </script> </head> <body> <div class="example" id="myDiv"> Change the values of the horizontal and vertical image positions. </div> <br /> <select onchange="ChangeBgPos ();" size="3"> <option selected="selected" />center <option />left <option />right </select> <select onchange="ChangeBgPos ();" size="3"> <option />bottom <option />center <option selected="selected" />top </select> </body> |
||||
|
||||
Did you find this example helpful?
|
Supported by objects:
CSSStyleDeclaration, htmlElement.currentStyle, htmlElement.runtimeStyle, htmlElement.style
HTML elements:
a, abbr, acronym, address, b, bdo, big, blink, blockquote, body, button, caption, center, cite, code, col, colgroup, dd, del, dfn, dir, div, dl, dt, em, fieldset, font, form, frame, frameset, h1, h2, h3, h4, h5, h6, hr, html, i, iframe, img, input:button, input:checkbox, input:file, input:image, input:password, input:radio, input:range, input:reset, input:search, input:submit, input:text, ins, isindex, kbd, label, legend, li, listing, marquee, menu, nobr, ol, p, plaintext, pre, q, rt, ruby, s, samp, select, small, span, strike, strong, sub, sup, table, tbody, td, textarea, tfoot, th, thead, tr, tt, u, ul, var, xmp
Related pages:
background
backgroundAttachment
backgroundColor
backgroundImage
backgroundPositionX
backgroundPositionY
backgroundRepeat
backgroundAttachment
backgroundColor
backgroundImage
backgroundPositionX
backgroundPositionY
backgroundRepeat
External links:
background-position (MSDN)
background-position (Mozilla Developer Center)
background-position (Safari Reference Library)
background-position (W3C)
background-position (Mozilla Developer Center)
background-position (Safari Reference Library)
background-position (W3C)
User Contributed Comments