CSS - background-position-y
The background-position-y
CSS property sets the initial vertical position, relative to the background position layer defined by background-origin
for each defined background image. For more information, see the background-position
property, which has been widely supported for much longer.
Syntax
/* Keyword values */ background-position-y: top; background-position-y: center; background-position-y: bottom; /* <percentage> values */ background-position-y: 25%; /* <length> values */ background-position-y: 0px; background-position-y: 1cm; background-position-y: 8em; /* side-relative values */ background-position-y: bottom 3px; background-position-y: bottom 10%; /* Multiple values */ background-position-y: 0px, center; /* Global values */ background-position-y: inherit; background-position-y: initial; background-position-y: unset;
Values
top
- Aligns the top edge of the background image with the top edge of the background position layer.
center
- Aligns the vertical center of the background image with the vertical center of the background position layer.
bottom
- Aligns the bottom edge of the background image with the bottom edge of the background position layer.
<length>
- A
<length>
value defining the offset of the given background image's vertical edge from the corresponding background position layer's vertical edge. If no edge is given, it refers to the top edge. <percentage>
- A
<percentage>
value defining the offset of the given background image's vertical edge from the corresponding background position layer's vertical edge relative to its height. If no edge is given, it refers to the top edge.
Formal syntax
<a href="css/value_definition_syntax#brackets" title="Brackets">[</a> center <a href="css/value_definition_syntax#single_bar" title="Single bar">|</a> <a href="css/value_definition_syntax#brackets" title="Brackets">[</a> top <a href="css/value_definition_syntax#single_bar" title="Single bar">|</a> bottom <a href="css/value_definition_syntax#single_bar" title="Single bar">|</a> y-start <a href="css/value_definition_syntax#single_bar" title="Single bar">|</a> y-end <a href="css/value_definition_syntax#brackets" title="Brackets">]</a> <a href="css/background-position-y#length-percentage"><length-percentage></a><a href="css/value_definition_syntax#question_mark_(.3f)" title="Question mark">?</a> <a href="css/value_definition_syntax#brackets" title="Brackets">]</a><a href="css/value_definition_syntax#hash_mark_(.23)" title="Hash mark">#</a><p>where <br><code><length-percentage> = <a href="css/length" title="Possible values: a number followed by'em', 'ex', 'ch', 'rem', 'px', 'cm', 'mm', 'in', 'vh', 'vw', 'vmin', 'vmax', 'pt', 'pc' or 'px', like 3px, 1.5cm, -0.5em or 0"><length></a> <a href="css/value_definition_syntax#single_bar" title="Single bar">|</a> <a href="css/percentage" title=""><percentage></a></code></p>
Description
The background-position-y
CSS property sets the initial vertical position, relative to the background position layer defined by background-origin
for each defined background image. For more information, see the background-position
property, which has been widely supported for much longer.
background
or background-position
shorthand properties applied to the element after the background-position-x
CSS property.Initial value | top |
---|---|
Applies to | all elements |
Inherited | no |
Percentages | refer to height of background positioning area minus height of background image |
Media | visual |
Computed value | A list, each item consisting of: an offset given as a combination of an absolute length and a percentage, plus an origin keyword |
Animatable | no |
Canonical order | the unique non-ambiguous order defined by the formal grammar |
Browser Compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | (Yes) | 49.0 (49.0) | (Yes) | (Yes) | (Yes) |
Two-value syntax (support for offsets from any edge) | No support | 49.0 (49.0) | (Yes) | No support | ? |
Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | (Yes) | 49.0 (49.0) | ? | ? | (Yes) |
Two-value syntax (support for offsets from any edge) | ? | 49.0 (49.0) | ? | ? | ? |
See Also
Specifications
Specification | Status | Comment |
---|---|---|
CSS Backgrounds and Borders Module Level 4 The definition of 'background-position-y' in that specification. |
Editor's Draft | Initial specification of longhand subproperties of background-position , to match longstanding implementations. |
License
© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/css/background-position-y