grid-column

Các tiện ích để kiểm soát cách các phần tử được định kích thước và đặt trên các cột grid.

ClassStyles
col-span-<number>
grid-column: span <number> / span <number>;
col-span-full
grid-column: 1 / -1;
col-span-(<custom-property>)
grid-column: span var(<custom-property>) / span var(<custom-property>);
col-span-[<value>]
grid-column: span <value> / span <value>;
col-start-<number>
grid-column-start: <number>;
-col-start-<number>
grid-column-start: calc(<number> * -1);
col-start-auto
grid-column-start: auto;
col-start-(<custom-property>)
grid-column-start: var(<custom-property>);
col-start-[<value>]
grid-column-start: <value>;
col-end-<number>
grid-column-end: <number>;

Ví dụ

Span cột

Sử dụng các tiện ích col-span-<number> như col-span-2col-span-4 để làm cho một phần tử trải rộng trên n cột:

01
02
03
04
05
06
07
<div class="grid grid-cols-3 gap-4">  <div class="...">01</div>  <div class="...">02</div>  <div class="...">03</div>  <div class="col-span-2 ...">04</div>  <div class="...">05</div>  <div class="...">06</div>  <div class="col-span-2 ...">07</div></div>

Dòng bắt đầu và kết thúc

Sử dụng các tiện ích col-start-<number> hoặc col-end-<number> như col-start-2col-end-3 để làm cho một phần tử bắt đầu hoặc kết thúc tại dòng grid thứ n:

01
02
03
04
<div class="grid grid-cols-6 gap-4">  <div class="col-span-4 col-start-2 ...">01</div>  <div class="col-start-1 col-end-3 ...">02</div>  <div class="col-span-2 col-end-7 ...">03</div>  <div class="col-start-1 col-end-7 ...">04</div></div>

Chúng cũng có thể được kết hợp với các tiện ích col-span-<number> để trải rộng một số lượng cột cụ thể.

Sử dụng giá trị tùy chỉnh

Use utilities like col-[<value>],col-span-[<value>],col-start-[<value>], and col-end-[<value>] to set the grid column size and location based on a completely custom value:

<div class="col-[16_/_span_16] ...">  <!-- ... --></div>

For CSS variables, you can also use the col-(<custom-property>) syntax:

<div class="col-(--my-columns) ...">  <!-- ... --></div>

This is just a shorthand for col-[var(<custom-property>)] that adds the var() function for you automatically.

Responsive design

Prefix grid-column,grid-column-start, and grid-column-end utilities with a breakpoint variant like md: to only apply the utility at medium screen sizes and above:

<div class="col-span-2 md:col-span-6 ...">  <!-- ... --></div>

Learn more about using variants in the variants documentation.

Copyright © 2025 Tailwind Labs Inc.·Chính sách thương hiệu