Desbordamiento de texto CSS Tailwind

Esta clase acepta más de un valor en Tailwind CSS . Todas las propiedades están cubiertas en forma de clase. Es la alternativa a la propiedad de desbordamiento de texto CSS . Esta clase se usa para especificar que parte del texto se ha desbordado y se ha ocultado a la vista. La clase de espacio en blanco debe establecerse en nowrap y la clase de desbordamiento debe estar oculta.

 Clases de desbordamiento de texto:

  • truncar
  • puntos suspensivos de desbordamiento 
  • clip de desbordamiento 

truncar: Trunca el texto.

Sintaxis:

<element class="truncate">...</element>

Ejemplo:

HTML

<!DOCTYPE html> 
<html>
<head> 
    <link href=
"https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" 
          rel="stylesheet"> 
</head> 
  
<body class="text-center mx-4 space-y-2"> 
    <h1 class="text-green-600 text-5xl font-bold">
        GeeksforGeeks
    </h1> 
    <b>Tailwind CSS Text Overflow Class</b> 
    <div class="mx-48 bg-green-200 p-2 rounded-lg">
    <p class="truncate whitespace-nowrap overflow-hidden"> 
        A Computer Science portal for Geeks, 
        this portal is the saviour of college 
        students
    </p>
   
    </div>
</body> 
  
</html> 

Producción:

overflow-ellipsis: el texto se recorta y el texto recortado se representa como ‘…’ 

Sintaxis:

<element class="overflow-ellipsis">...</element>

Ejemplo:

HTML

<!DOCTYPE html> 
<html>
<head> 
    <link href=
"https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" 
          rel="stylesheet"> 
</head> 
  
<body class="text-center mx-4 space-y-2"> 
    <h1 class="text-green-600 text-5xl font-bold">
        GeeksforGeeks
    </h1> 
    <b>Tailwind CSS Text Overflow Class</b> 
    <div class="mx-48 bg-green-200 p-2 rounded-lg">
    <p class="overflow-ellipsis whitespace-nowrap overflow-hidden"> 
        A Computer Science portal for Geeks, 
        this portal is the saviour of college 
        students
    </p>
   
    </div>
</body> 
  
</html> 

Producción:

overflow-clip: el texto está recortado y no se puede ver. Este es el valor predeterminado.

Sintaxis:

<element class="overflow-clip">...</element>

Ejemplo:

HTML

<!DOCTYPE html> 
<html>
<head> 
    <link href=
"https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" 
          rel="stylesheet"> 
</head> 
  
<body class="text-center mx-4 space-y-2"> 
    <h1 class="text-green-600 text-5xl font-bold">
        GeeksforGeeks
    </h1> 
    <b>Tailwind CSS Text Overflow Class</b> 
    <div class="mx-48 bg-green-200 p-2 rounded-lg">
    <p class="overflow-clip whitespace-nowrap overflow-hidden"> 
        A Computer Science portal for Geeks, 
        this portal is the saviour of college 
        students
    </p>
   
    </div>
</body> 
  
</html> 

Producción:

Clase de desbordamiento de texto

Publicación traducida automáticamente

Artículo escrito por skyridetim y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *