Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

left

Podsumowanie

Własność left określa część pozycji elementów pozycjonowanych.

Dla elementów pozycjonowanych absolutnie (tych z wartościami position: absolute lub position: fixed) definiuje odległość między lewą krawędzią marginesu elementu a lewą krawędzią zawierającego go bloku.

Wartość początkowaauto
Stosowana dopositioned elements
Dziedziczonano
Percentagesrefer to the width of the containing block
Mediavisual
Wartość wyliczonaif specified as a length, the corresponding absolute length; if specified as a percentage, the specified value; otherwise, auto
Animatableyes, as a length, percentage or calc(); when both values are lengths, they are interpolated as lengths; when both values are percentages, they are interpolated as percentages; otherwise, both values are converted into a calc() function that is the sum of a length and a percentage (each possibly zero), and these calc() functions have each half interpolated as real numbers.
Canonical orderthe unique non-ambiguous order defined by the formal grammar

Składnia

left: <length> | <percentage> | auto | inherit ;

Wartości

<length> 
Długość, może być ujemna, zerowa lub dodatnia.
<percentage> 
Procenty szerokości zawierającego bloku.

Przykłady

Zobacz przykład

div { 
   position: absolute;
   left: 20px; 
   height: 200px;
   border: 1px solid #000;
}

Specyfikacje

Zgodność z przeglądarką

Przeglądarka Najniższa wersja
Internet Explorer ?
Firefox 1
Netscape ?
Opera ?
Safari ?

Zobacz także

position, top, right, bottom

Autorzy i etykiety dokumentu

 Autorzy tej strony: mrstork, fscholz, teoli, Witia
 Ostatnia aktualizacja: mrstork,