Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

170
Vistas
Display last two lines of a large text in a div

I have continuous text added to a div, I want to display only the last two lines of the text in the div which is of fixed width. I could split the large text into multiple lines and then show the last two lines in the div but I was checking if there is any out of the box css property on div that can automatically display only last two lines and hide the rest.

Example:

A printing press is a mechanical device for
applying pressure to an inked surface resting 
upon a print medium (such as paper or cloth),
thereby transferring the ink.

display only:

upon a print medium (such as paper or cloth),
thereby transferring the ink.
about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

You can try like below:

.box {
  width: 280px;
  line-height: 1.2em;
  height: 2.4em; /* twice the line-height */
  overflow: hidden;
  display: flex;
  align-items: end; /* align at the end to see the last lines */
}

.box p {
  margin: 0;
}
<div class="box">
  <p>
    A printing press is a mechanical device for applying pressure to an inked surface resting upon a print medium (such as paper or cloth), thereby transferring the ink.
  </p>
</div>

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda