Flexbox & Grid
Utilities for controlling how elements are sized and placed across grid columns.
Use the col-span-{n}
utilities to make an element span n columns.
<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>
Use the col-start-{n}
and col-end-{n}
utilities to make an element start or end at the nth grid line. These can also be combined with the col-span-{n}
utilities to span a specific number of columns.
Note that CSS grid lines start at 1, not 0, so a full-width element in a 6-column grid would start at line 1 and end at line 7.
<div class="grid grid-cols-6 gap-4">
<div class="col-start-2 col-span-4 ...">01</div>
<div class="col-start-1 col-end-3 ...">02</div>
<div class="col-end-7 col-span-2 ...">03</div>
<div class="col-start-1 col-end-7 ...">04</div>
</div>
Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:col-span-6
to only apply the col-span-6
utility on hover.
<div class="col-span-2 hover:col-span-6">
<!-- ... -->
</div>
For a complete list of all available state modifiers, check out the Hover, Focus, & Other States documentation.
You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use md:col-span-6
to apply the col-span-6
utility at only medium screen sizes and above.
<div class="col-span-2 md:col-span-6">
<!-- ... -->
</div>
To learn more, check out the documentation on Responsive Design, Dark Mode and other media query modifiers.
By default, Tailwind includes grid-column utilities for working with grids with up to 12 columns. You change, add, or remove these by customizing the gridColumn
, gridColumnStart
, and gridColumnEnd
sections of your Tailwind theme config.
For creating more col-{value}
utilities that control the grid-column
shorthand property directly, customize the gridColumn
section of your Tailwind theme config:
module.exports = {
theme: {
extend: {
gridColumn: {
'span-16': 'span 16 / span 16',
}
}
}
}
We use this internally for our col-span-{n}
utilities. Note that since this configures the grid-column
shorthand property directly, we include the word span
directly in the value name, it’s not baked into the class name automatically. That means you are free to add entries that do whatever you want here — they don’t just have to be span
utilities.
To add new col-start-{n}
utilities, use the gridColumnStart
section of your Tailwind theme config:
module.exports = {
theme: {
extend: {
gridColumnStart: {
'13': '13',
'14': '14',
'15': '15',
'16': '16',
'17': '17',
}
}
}
}
To add new col-end-{n}
utilities, use the gridColumnEnd
section of your Tailwind theme config:
module.exports = {
theme: {
extend: {
gridColumnEnd: {
'13': '13',
'14': '14',
'15': '15',
'16': '16',
'17': '17',
}
}
}
}
Learn more about customizing the default theme in the theme customization documentation.
If you need to use a one-off grid-column/grid-column-start/grid-column-end
value that doesn’t make sense to include in your theme, use square brackets to generate a property on the fly using any arbitrary value.
<div class="col-[16_/_span_16]">
<!-- ... -->
</div>
Learn more about arbitrary value support in the arbitrary values documentation.