background-position-y
Quick Summary for background-position-y
The background-position-y CSS property sets the initial vertical position for each background image. The position is relative to the position layer set by background-origin.
Code Usage for background-position-y
/* 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: revert; background-position-y: unset; 
More Details for background-position-y

background-position-y

The background-position-y CSS property sets the initial vertical position for each background image. The position is relative to the position layer set by background-origin.

The value of this property is overridden by any declaration of the background or background-position shorthand properties applied to the element after it.

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: revert; background-position-y: unset; 

The background-position-y property is specified as one or more values, separated by commas.

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>

The offset of the given background image's horizontal edge from the corresponding background position layer's top horizontal edge. (Some browsers allow assigning the bottom edge for offset).

<percentage>

The offset of the given background image's vertical position relative to the container. A value of 0% means that the top edge of the background image is aligned with the top edge of the container, and a value of 100% means that the bottom edge of the background image is aligned with the bottom edge of the container, thus a value of 50% vertically centers the background image.

Formal definition

Initial valuetop
Applies toall elements
Inheritedno
Percentagesrefer to height of background positioning area minus height of background image
Computed valueA list, each item consisting of: an offset given as a combination of an absolute length and a percentage, plus an origin keyword
Animation typediscrete

Formal syntax

[ center | [ [ top | bottom | y-start | y-end ]? <length-percentage>? ]! ]#

where <length-percentage> = <length> | <percentage>

Examples

Basic example

The following example shows a simple background image implementation, with background-position-x and background-position-y used to define the image's horizontal and vertical positions separately.

HTML
<div></div> 
CSS
div {   width: 300px;   height: 300px;   background-color: skyblue;   background-image: url(https://media.prod.mdn.mozit.cloud/attachments/2020/07/29/17350/3b4892b7e820122ac6dd7678891d4507/firefox.png);   background-repeat: no-repeat;   background-position-x: center;   background-position-y: bottom 10px; } 
Result

Specifications

Specification
CSS Backgrounds and Borders Module Level 4 # background-position-longhands

See also

background-position background-position-x background-position-inline background-position-block Using multiple backgrounds Select your preferred language English (US)Français日本語中文 (简体) Change language

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Categories in CSS
css
Search CSS
Search CSS by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
The problem with hoarding is you end up living off your reserves. Eventually, you’ll become stale. If you give away everything you have, you are left with nothing. This forces you to look, to be aware, to replenish. . . . Somehow the more you give away, the more comes back to you.
Paul Arden
Random CSS Property

shape-outside

The shape-outside CSS property defines a shape—which may be non-rectangular—around which adjacent inline content should wrap. By default, inline content wraps around its margin box; shape-outside provides a way to customize this wrapping, making it possible to wrap text around complex objects rather than simple boxes.
shape-outside css reference