Derniers tutoriels de développement web
 

Style textAlignLast Property

<Style objet

Exemple

Aligner la dernière ligne d'un pragraph à droite:

document.getElementById("myDIV").style.textAlignLast = "right";
Essayez vous - même »

Définition et utilisation

La propriété textAlignLast indique comment aligner la dernière ligne d'un texte.

Remarque: La propriété textAlignLast ne fonctionnera que pour des éléments avec la propriété text-align mis à "justify" .


Support du navigateur

Internet ExplorerFirefoxOperaGoogle ChromeSafari

La propriété textAlignLast est pris en charge dans Internet Explorer.

Firefox supporte une alternative, la propriété MozTextAlignLast.

Les valeurs "start" et "end" ne sont pas pris en charge dans Internet Explorer.


Syntaxe

Retour la propriété textAlignLast:

object .style.textAlignLast

Définissez la propriété textAlignLast:

object .style.textAlignLast="auto|left|right|center|justify|start|end|initial|inherit"

Valeurs de propriété

Valeur La description
auto Valeur par défaut. La dernière ligne est justifiée et aligné à gauche
left La dernière ligne est alignée sur la gauche
right La dernière ligne est aligné sur la droite
center La dernière ligne est le centre alignés
justify La dernière ligne se justifie que le reste des lignes
start La dernière ligne est alignée sur le début de la ligne (left if the text-direction is left-to-right, and right is the text-direction is right-to-left) de (left if the text-direction is left-to-right, and right is the text-direction is right-to-left) dans la (left if the text-direction is left-to-right, and right is the text-direction is right-to-left) de (left if the text-direction is left-to-right, and right is the text-direction is right-to-left) de (left if the text-direction is left-to-right, and right is the text-direction is right-to-left) de (left if the text-direction is left-to-right, and right is the text-direction is right-to-left)
end La dernière ligne est aligné à l'extrémité de la ligne (right if the text-direction is left-to-right, and left is the text-direction is right-to-left) à (right if the text-direction is left-to-right, and left is the text-direction is right-to-left) de (right if the text-direction is left-to-right, and left is the text-direction is right-to-left) de (right if the text-direction is left-to-right, and left is the text-direction is right-to-left) du (right if the text-direction is left-to-right, and left is the text-direction is right-to-left) de (right if the text-direction is left-to-right, and left is the text-direction is right-to-left)
initial Définit cette propriété à sa valeur par défaut. Lisez à propos initial
inherit Hérite cette propriété de son élément parent. En savoir plus sur hériteront

Détails techniques

Valeur par défaut: auto
Valeur de retour: Une chaîne, ce qui représente la propriété text-align-dernier d'un élément
version CSS CSS3

Pages associées

Référence CSS: text-align-last property


<Style objet