Tailwind CSS Justificar contenido

Esta clase acepta dos valores en Tailwind CSS. Es la alternativa a la propiedad de contenido de justificación de CSS . Esta clase se utiliza para describir la alineación del contenedor de caja flexible. Contiene el espacio entre y alrededor de los elementos de contenido a lo largo del eje principal de un contenedor flexible. Básicamente se usa para controlar cómo se colocan los elementos flexibles y de cuadrícula a lo largo del eje principal de un contenedor.

Justificar las clases de contenido:

  • justificar-comenzar
  • justificar-fin 
  • justificar-centro 
  • justificar-entre 
  • justificarse 
  • justificar uniformemente 

«justify-start»: se utiliza para alinear elementos flexibles desde el inicio del contenedor.

Sintaxis:

<element class="justify-start">...</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"> 
    <h1 class="text-green-600 text-5xl font-bold">
        GeeksforGeeks
    </h1> 
    <b>Tailwind CSS Justify Content Class</b> 
    <div id="main" class="flex justify-start flex-row"> 
        <div class="bg-green-700 w-24 h-12">1</div> 
        <div class="bg-green-600 w-24 h-12">2</div> 
        <div class="bg-green-500 w-24 h-12">3</div> 
        <div class="bg-green-400 w-24 h-12">4</div> 
    </div> 
</body> 
  
</html>

Producción:

justify-end: se utiliza para alinear elementos flexibles desde el final del contenedor.

Sintaxis:

<element class="justify-end">...</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"> 
    <h1 class="text-green-600 text-5xl font-bold">
        GeeksforGeeks
    </h1> 
    <b>Tailwind CSS Justify Content Class</b> 
    <div id="main" class="flex justify-end flex-row"> 
        <div class="bg-green-700 w-24 h-12">1</div> 
        <div class="bg-green-600 w-24 h-12">2</div> 
        <div class="bg-green-500 w-24 h-12">3</div> 
        <div class="bg-green-400 w-24 h-12">4</div> 
    </div> 
</body> 
  
</html>

Producción:

justificar-centro: se utiliza para alinear elementos flexibles desde el centro del contenedor.

Sintaxis:

<element class="justify-center">...</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"> 
    <h1 class="text-green-600 text-5xl font-bold">
        GeeksforGeeks
    </h1> 
    <b>Tailwind CSS Justify Content Class</b> 
    <div id="main" class="flex justify-center flex-row"> 
        <div class="bg-green-700 w-24 h-12">1</div> 
        <div class="bg-green-600 w-24 h-12">2</div> 
        <div class="bg-green-500 w-24 h-12">3</div> 
        <div class="bg-green-400 w-24 h-12">4</div> 
    </div> 
</body> 
  
</html>

Producción:

justificar entre: los elementos flexibles se colocan con un espacio uniforme donde el elemento se empuja para comenzar y el último elemento se empuja para terminar.

Sintaxis:

<element class="justify-between">...</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"> 
    <h1 class="text-green-600 text-5xl font-bold">
        GeeksforGeeks
    </h1> 
    <b>Tailwind CSS Justify Content Class</b> 
    <div id="main" class="flex justify-between flex-row"> 
        <div class="bg-green-700 w-24 h-12">1</div> 
        <div class="bg-green-600 w-24 h-12">2</div> 
        <div class="bg-green-500 w-24 h-12">3</div> 
        <div class="bg-green-400 w-24 h-12">4</div> 
    </div> 
</body> 
  
</html>

Producción:

justificar-alrededor: los elementos flexibles se colocan con el mismo espacio entre sí, las esquinas.

Sintaxis:

<element class="justify-around">...</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"> 
    <h1 class="text-green-600 text-5xl font-bold">
        GeeksforGeeks
    </h1> 
    <b>Tailwind CSS Justify Content Class</b> 
    <div id="main" class="flex justify-around flex-row"> 
        <div class="bg-green-700 w-24 h-12">1</div> 
        <div class="bg-green-600 w-24 h-12">2</div> 
        <div class="bg-green-500 w-24 h-12">3</div> 
        <div class="bg-green-400 w-24 h-12">4</div> 
    </div> 
</body> 
  
</html>

Producción:

justificar uniformemente: los elementos se colocan con el mismo espacio entre ellos, pero el espacio desde las esquinas es diferente.

Sintaxis:

<element class="justify-evenly">...</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"> 
    <h1 class="text-green-600 text-5xl font-bold">
        GeeksforGeeks
    </h1> 
    <b>Tailwind CSS Justify Content Class</b> 
    <div id="main" class="flex justify-evenly flex-row"> 
        <div class="bg-green-700 w-24 h-12">1</div> 
        <div class="bg-green-600 w-24 h-12">2</div> 
        <div class="bg-green-500 w-24 h-12">3</div> 
        <div class="bg-green-400 w-24 h-12">4</div> 
    </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

Deja una respuesta

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