CSS text-align-last playground

Explore text-align-last with controls for text direction and the alignment of the final line or the line before a forced break.

Ask AI

CSS text-align-last playground

Response generated with openai/gpt-5.4-nano. AI can make mistakes. Always review the result.

BaselineLab compara text-align-last en un párrafo justificado para que la línea final cambie de forma clara.
Este salto manual también permite ver cómo se alinea la línea anterior al br dentro del mismo bloque de texto.
La última línea queda bajo el valor que selecciones.

HTML
<p class="text-align-last-sample" dir="ltr">
  BaselineLab compara text-align-last en un párrafo justificado para que la línea final cambie de forma clara.<br>
  Este salto manual también permite ver cómo se alinea la línea anterior al br dentro del mismo bloque de texto.<br>
  La última línea queda bajo el valor que selecciones.
</p>
Tailwind CSS
Some classes with arbitrary values can be replaced by native classes, depending on the value and your Tailwind CSS configuration.
<p class="max-w-xl text-lg leading-7 text-justify [text-align-last:auto]" dir="ltr">
  BaselineLab compara text-align-last en un párrafo justificado para que la línea final cambie de forma clara.<br>
  Este salto manual también permite ver cómo se alinea la línea anterior al br dentro del mismo bloque de texto.<br>
  La última línea queda bajo el valor que selecciones.
</p>
CSS
.text-align-last-sample {
  max-inline-size: 36rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-align: justify;
  text-align-last: auto;
}