Spezzare il testo che va oltre l'elemento contenitore in CSS

Versione del 13 nov 2020 alle 16:53 di Andrea (discussione | contributi) (Creata pagina con "← CSS The text-overflow property in CSS deals with situations where text is clipped when it overflows the element’s box. It can be clipped (i.e. cut o...")
(diff) ← Versione meno recente | Versione attuale (diff) | Versione più recente → (diff)

← CSS

The text-overflow property in CSS deals with situations where text is clipped when it overflows the element’s box. It can be clipped (i.e. cut off, hidden), display an ellipsis (‘…’, Unicode Range Value U+2026) or display an author-defined string (no current browser support for author-defined strings).

.ellipsis {
  text-overflow: ellipsis;

  /* Required for text-overflow to do anything */
  white-space: nowrap;
  overflow: hidden;
}