Ejemplo
Alinear la última línea de un pragraph a la derecha:
document.getElementById("myDIV").style.textAlignLast = "right";
Inténtalo tú mismo " Definición y Uso
La propiedad textAlignLast especifica cómo alinear la última línea de un texto.
Nota: La propiedad textAlignLast sólo funcionará para los elementos con la propiedad text-align ajustado a "justify" .
Soporte del navegador
La propiedad textAlignLast sólo se admite en Internet Explorer.
Firefox soporta una alternativa, la propiedad MozTextAlignLast.
Los valores de "start" y "end" no se admiten en Internet Explorer.
Sintaxis
Devolver la propiedad textAlignLast:
object .style.textAlignLast
Establecer la propiedad textAlignLast:
object .style.textAlignLast="auto|left|right|center|justify|start|end|initial|inherit"
Valores de propiedad
Valor | Descripción |
---|---|
auto | Valor por defecto. La última línea es justificado y alineado a la izquierda |
left | La última línea está alineado a la izquierda |
right | La última línea está alineado a la derecha |
center | La última línea está alineado al centro |
justify | La última línea se justifica que el resto de las líneas |
start | La última línea está alineado al comienzo de la línea (left if the text-direction is left-to-right, and right is the text-direction is right-to-left) |
end | La última línea está alineado al final de la línea (right if the text-direction is left-to-right, and left is the text-direction is right-to-left) |
initial | Establece esta propiedad a su valor por defecto. Lea acerca inicial |
inherit | Hereda esta propiedad de su elemento padre. Lea acerca de heredar |
Detalles técnicos
Valor por defecto: | auto |
---|---|
Valor de retorno: | Una cadena, que representa la propiedad text-align-last de un elemento |
Versión CSS | CSS3 |
Páginas relacionadas
Referencia CSS: text-align-last property
<Estilo de objeto