mirror of
https://github.com/upstash/context7.git
synced 2026-09-14 19:09:34 +08:00
6d777619c2
Co-authored-by: Context7 Agent <docs-agent@context7.com> Co-authored-by: Josh <josh@upstash.com> Co-authored-by: context7[bot] <236830434+context7[bot]@users.noreply.github.com>
25 lines
418 B
Plaintext
25 lines
418 B
Plaintext
---
|
|
title: Columns
|
|
description: Arrange content in a responsive grid
|
|
---
|
|
|
|
Set `cols` from 1 to 4. `<CardGroup>` is the legacy name for `<Columns>`.
|
|
|
|
## Usage
|
|
|
|
```mdx
|
|
<Columns cols={2}>
|
|
<Column>First column.</Column>
|
|
<Column>Second column.</Column>
|
|
</Columns>
|
|
```
|
|
|
|
Cards do not need a `<Column>` wrapper.
|
|
|
|
## Example
|
|
|
|
<Columns cols={2}>
|
|
<Column>First column.</Column>
|
|
<Column>Second column.</Column>
|
|
</Columns>
|