Files
freeCodeCamp/guide/russian/css/properties/background-position-property/index.md
Ahmad Abdolsaheb 21bd031a52 fix: repalce imgur with s3 for russian guide without conflict (#36055)
* fix: imgur to s3 for russian guide without conflict

(cherry picked from commit ac90750e36b0dd1fe508c69a2277b75be48e4b95)

* fix: remove extra links

Co-Authored-By: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>

* fix: revert unrelated changes

* fix: revert changes
2019-05-25 02:23:55 +05:30

40 lines
1.6 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: Background Position Property
localeTitle: Исходная позиция
---
## Исходная позиция
Фон-свойство задает позицию, с которой должно начинаться фоновое изображение. Другими словами, это свойство примет значение x и y-значение и запустит изображение из точки `(x, y)` .
**Пример:**
```css
/* setting background-image of HTML doc */
body {
background-image: url('https://cdn-media-1.freecodecamp.org/imgr/6Z2VStD.png');
background-repeat: no-repeat;
background-position: right top;
}
```
По умолчанию для свойства background-position установлено значение `0% 0%` .
**Значения свойств:**
`background-position: x-value y-value` где,
_x-значение_ : `left | center | right | x% | x px` и
_y-значение_ : `top | center | bottom | y% | y px` .
Другие допустимые значения свойств являются `initial` и `inherit` .
`initial` : Устанавливает это свойство по умолчанию.
`inherit` : Наследует значение от родительского элемента.
**Примечание.** Когда для свойства фона задано только одно значение, другое значение по умолчанию устанавливается в `center` .
**Другие источники:**
MDN Docs: https://developer.mozilla.org/en-US/docs/Web/CSS/background-position