pengzhanbo 385059f214
docs: update en docs (#708)
* docs: update en docs

* chore: tweak

* chore: tweak

* chore: tweak
2025-10-09 15:46:05 +08:00

2.4 KiB

title, icon, createTime, permalink, badge
title icon createTime permalink badge
Flex Container material-symbols-light:flex-no-wrap 2025/10/08 17:56:39 /en/guide/markdown/flex/ New

Overview

The Flex container ::: flex provides a convenient way to apply Flexbox layout to block-level content in markdown.

Usage

::: flex [center|between|around] [start|center|end] [gap="20"] [column]

<!-- Block content 1 -->

<!-- Block content 2 -->

:::

Attributes

  • On the main axis, use center / between / around to specify alignment;
  • On the cross axis, use start / center / end to specify alignment;
  • Use gap="20" to specify spacing;
  • Use column to set the main axis direction to vertical.

Examples

Centered Table Alignment

Input:

::: flex center

| Column 1 | Column 2 | Column 3 |
| -------- | -------- | -------- |
| 1        | 2        | 3        |
| 4        | 5        | 6        |

:::

Output:

::: flex center

Column 1 Column 2 Column 3
1 2 3
4 5 6

:::

Two Tables with Left-Right Alignment

Input:

::: flex between center

| Column 1 | Column 2 | Column 3 |
| -------- | -------- | -------- |
| 1        | 2        | 3        |
| 4        | 5        | 6        |

| Column 1 | Column 2 | Column 3 |
| -------- | -------- | -------- |
| 1        | 2        | 3        |
| 4        | 5        | 6        |

:::

Output:

::: flex between center

Column 1 Column 2 Column 3
1 2 3
4 5 6
Column 1 Column 2 Column 3
1 2 3
4 5 6

:::

Evenly Spaced Tables

Input:

::: flex around center

| Column 1 | Column 2 | Column 3 |
| -------- | -------- | -------- |
| 1        | 2        | 3        |
| 4        | 5        | 6        |

| Column 1 | Column 2 | Column 3 |
| -------- | -------- | -------- |
| 1        | 2        | 3        |
| 4        | 5        | 6        |

:::

Output:

::: flex around center

Column 1 Column 2 Column 3
1 2 3
4 5 6
Column 1 Column 2 Column 3
1 2 3
4 5 6

:::