Esta clase acepta más de un valor en Tailwind CSS en el que todas las propiedades están cubiertas en forma de clase. Es la alternativa a la propiedad grid-auto-columns de CSS . Esta clase se utiliza para especificar el tamaño de las columnas de los contenedores de cuadrícula generados implícitamente. Esta clase se utiliza para que las utilidades controlen el tamaño de las columnas de cuadrícula creadas implícitamente.
Clases de columnas Grid Auto:
- auto-cols-auto
- auto-cols-min
- auto-cols-max
- auto-cols-fr
auto-cols-auto: Es el valor por defecto. El tamaño se determina implícitamente según el tamaño del contenedor.
Sintaxis:
<element class="auto-cols-auto">..</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"> <h1 class="text-green-600 text-5xl font-bold"> GeeksforGeeks </h1> <b>Tailwind CSS Grid Auto Columns Class</b> <div class ="m-8 p-8 grid bg-green-600 grid-rows-2 grid-flow-col gap-4 auto-cols-auto"> <div class = "p-4 bg-green-200"> HyperText Markup language </div> <div class = "p-4 bg-green-200"> Cascading Style Sheet </div> <div class = "p-4 bg-green-200"> LiveScript Become JavaScript </div> <div class = "p-4 bg-green-200"> Bootstrap become replacement of CSS </div> </div> </body> </html>
Producción:
auto-cols-min: Especifica el tamaño en función del elemento más pequeño del contenedor.
Sintaxis:
<element class="auto-cols-min">..</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"> <h1 class="text-green-600 text-5xl font-bold"> GeeksforGeeks </h1> <b>Tailwind CSS Grid Auto Columns Class</b> <div class ="m-8 p-8 grid bg-green-600 grid-rows-2 grid-flow-col gap-4 auto-cols-min"> <div class = "p-4 bg-green-200"> HyperText Markup language </div> <div class = "p-4 bg-green-200"> Cascading Style Sheet </div> <div class = "p-4 bg-green-200"> LiveScript Become JavaScript </div> <div class = "p-4 bg-green-200"> Bootstrap become replacement of CSS </div> </div> </body> </html>
Producción:
auto-cols-max: Especifica el tamaño en función del elemento más grande del contenedor.
Sintaxis:
<element class="auto-cols-max">..</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"> <h1 class="text-green-600 text-5xl font-bold"> GeeksforGeeks </h1> <b>Tailwind CSS Grid Auto Columns Class</b> <div class ="m-8 p-8 grid bg-green-600 grid-rows-2 grid-flow-col gap-4 auto-cols-max"> <div class = "p-4 bg-green-200"> HyperText Markup language </div> <div class = "p-4 bg-green-200"> Cascading Style Sheet </div> <div class = "p-4 bg-green-200"> LiveScript Become JavaScript </div> <div class = "p-4 bg-green-200"> Bootstrap become replacement of CSS </div> </div> </body> </html>
Producción:
auto-cols-fr: Especifica el tamaño en el rango de [min, max] mayor o igual a min y menor o igual a max .
Sintaxis:
<element class="auto-cols-fr">..</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"> <h1 class="text-green-600 text-5xl font-bold"> GeeksforGeeks </h1> <b>Tailwind CSS Grid Auto Columns Class</b> <div class ="m-8 p-8 grid bg-green-600 grid-rows-2 grid-flow-col gap-4 auto-cols-fr"> <div class = "p-4 bg-green-200"> HyperText Markup language </div> <div class = "p-4 bg-green-200"> Cascading Style Sheet </div> <div class = "p-4 bg-green-200"> LiveScript Become JavaScript </div> <div class = "p-4 bg-green-200"> Bootstrap become replacement of CSS </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