From e19ddf0247da0d9f1c8959c43162ac05bd383a6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Gir=C3=A3o=20Serr=C3=A3o?= <5621605+rodrigogiraoserrao@users.noreply.github.com> Date: Wed, 21 Dec 2022 22:14:03 +0000 Subject: [PATCH] Fix tables of values. --- docs/snippets/type_syntax/border.md | 30 ++++++++++++------------- docs/snippets/type_syntax/horizontal.md | 2 +- docs/snippets/type_syntax/vertical.md | 4 ++-- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/docs/snippets/type_syntax/border.md b/docs/snippets/type_syntax/border.md index ca739ad79..ce8c6eaa2 100644 --- a/docs/snippets/type_syntax/border.md +++ b/docs/snippets/type_syntax/border.md @@ -2,18 +2,18 @@ The [``](/css_types/border.md) type can take any of the following values | Border type | Description | |-------------|----------------------------------------------------------| -| `"ascii"` | A border with plus, hyphen, and vertical bar characters. | -| `"blank"` | A blank border (reserves space for a border). | -| `"dashed"` | Dashed line border. | -| `"double"` | Double lined border. | -| `"heavy"` | Heavy border. | -| `"hidden"` | Alias for "none". | -| `"hkey"` | Horizontal key-line border. | -| `"inner"` | Thick solid border. | -| `"none"` | Disabled border. | -| `"outer"` | Solid border with additional space around content. | -| `"round"` | Rounded corners. | -| `"solid"` | Solid border. | -| `"tall"` | Solid border with additional space top and bottom. | -| `"vkey"` | Vertical key-line border. | -| `"wide"` | Solid border with additional space left and right. | +| `ascii` | A border with plus, hyphen, and vertical bar characters. | +| `blank` | A blank border (reserves space for a border). | +| `dashed` | Dashed line border. | +| `double` | Double lined border. | +| `heavy` | Heavy border. | +| `hidden` | Alias for "none". | +| `hkey` | Horizontal key-line border. | +| `inner` | Thick solid border. | +| `none` | Disabled border. | +| `outer` | Solid border with additional space around content. | +| `round` | Rounded corners. | +| `solid` | Solid border. | +| `tall` | Solid border with additional space top and bottom. | +| `vkey` | Vertical key-line border. | +| `wide` | Solid border with additional space left and right. | diff --git a/docs/snippets/type_syntax/horizontal.md b/docs/snippets/type_syntax/horizontal.md index 9aad683f0..4d80d23ee 100644 --- a/docs/snippets/type_syntax/horizontal.md +++ b/docs/snippets/type_syntax/horizontal.md @@ -2,6 +2,6 @@ The [``](/css_types/horizontal) type can take any of the following v | Value | Description | | ---------------- | -------------------------------------------- | -| `left` (default) | Aligns on the left of the horizontal axis. | | `center` | Aligns in the center of the horizontal axis. | +| `left` (default) | Aligns on the left of the horizontal axis. | | `right` | Aligns on the right of the horizontal axis. | diff --git a/docs/snippets/type_syntax/vertical.md b/docs/snippets/type_syntax/vertical.md index b5d91213e..34e7acceb 100644 --- a/docs/snippets/type_syntax/vertical.md +++ b/docs/snippets/type_syntax/vertical.md @@ -2,6 +2,6 @@ The [``](/css_types/vertical) type can take any of the following value | Value | Description | | --------------- | ------------------------------------------ | -| `top` (default) | Aligns at the top of the vertical axis. | -| `middle` | Aligns in the middle of the vertical axis. | | `bottom` | Aligns at the bottom of the vertical axis. | +| `middle` | Aligns in the middle of the vertical axis. | +| `top` (default) | Aligns at the top of the vertical axis. |