--- title: right slug: Web/CSS/right tags: - CSS - CSS Property - Własność CSS - border translation_of: Web/CSS/right ---
{{CSSRef}}

Własność CSS right pełni ważną rolę w określaniu pionowej pozycji pozycjonowanego elementu. Nie ma wpływu na elementy z nieokreślonym położeniem.

{{EmbedInteractiveExample("pages/css/right.html")}}

Efekt right jest zależny od pozycji elementu (czyli od własności position elementu).

When both {{cssxref("left")}} and right are defined, and the element cannot stretch to satisfy both, the position of the element is overspecified. When this is the case, the left value has precedence when the container is left-to-right; the right value has precedence when the container is right-to-left.

Składnia

/* Wartość liczbowa (długość) */
right: 3px;
right: 2.4em;

/* Wartość procentowa */
right: 10%;

/* Wartość kluczowa */
right: auto;

/* Wartości globalne */
right: inherit;
right: initial;
right: unset;

Values

{{cssxref("<length>")}}
Negatywna, pozytywna lub o wartości null długość, która dla:
{{cssxref("<percentage>")}}
Wartość procentowa określa procentową odległość  w stosunku do szerokości rodzica. 
auto
Specifies that:
inherit
Specifies that the value is the same as the computed value from its parent element (which might not be its containing block). This computed value is then handled as if it were a {{cssxref("<length>")}}, {{cssxref("<percentage>")}}, or the auto keyword.

Formal syntax

{{csssyntax}}

Przykłady

#example_3 {
  width: 100px;
  height: 100px;
  background-color: #FFC7E4;
  position: relative;
  top: 20px;
  left: 20px;
}

#example_4 {
  width: 100px;
  height: 100px;
  background-color: #FFD7C2;
  position: absolute;
  bottom: 10px;
  right: 20px;
}
<div id="example_3">Example 3</div>
<div id="example_4">Example 4</div>

{{ EmbedLiveSample('Examples', 500, 220) }}

Specyfikacja

Specyfikacja Status Komentarz
{{SpecName('CSS3 Transitions', '#animatable-css', 'right')}} {{Spec2('CSS3 Transitions')}} Definiuje right jako animatable (możliwy do animowania)
{{SpecName('CSS3 Positioning', '#propdef-right', 'right')}} {{Spec2('CSS3 Positioning')}}

Określa zachowanie dla sticky position.

{{SpecName('CSS2.1', 'visuren.html#propdef-right', 'right')}} {{Spec2('CSS2.1')}}

Initial definition.

{{cssinfo}}

Zgodność z przeglądarkami

{{Compat("css.properties.right")}}

Zobacz jeszcze