Add reference for border type.

This commit is contained in:
Rodrigo Girão Serrão
2022-12-21 21:37:16 +00:00
parent d195ff8b57
commit bc59c855b0
3 changed files with 71 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
The [`<border>`](/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. |