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 CSS text-decoration . Esta clase se utiliza para “decorar” el contenido del texto. Es esencialmente decorar el texto con diferentes tipos de líneas.
Clases de decoración de texto:
- subrayar
- línea directa
- sin subrayar
subrayar: Esta clase se utiliza para decorar el texto con un subrayado.
Sintaxis:
<element class="underline ">...</element>
Ejemplo:
HTML
<!DOCTYPE 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 Decoration Class</b> <div class="mx-14 bg-green-200 p-4"> <p class="underline"> A Computer Science portal for Geeks </p> </div> </body> </html>
Producción:
line-through: Esta clase se utiliza para trazar el texto.
Sintaxis:
<element class="line-through">...</element>
Ejemplo:
HTML
<!DOCTYPE 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 Decoration Class</b> <div class="mx-14 bg-green-200 p-4"> <p class="line-through"> A Computer Science portal for Geeks </p> </div> </body> </html>
Producción:
no-underline: esta clase se utiliza para eliminar el estilo de subrayado o de línea.
Sintaxis:
<element class="no-underline">...</element>
Ejemplo:
HTML
<!DOCTYPE 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 Decoration Class</b> <div class="mx-14 bg-green-200 p-4"> <p class="underline no-underline"> A Computer Science portal for Geeks </p> </div> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por skyridetim y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA