Fix examples for CSS type border.

This commit is contained in:
Rodrigo Girão Serrão
2023-01-04 10:58:53 +00:00
parent 01fcfe5459
commit 80f2ad214b

View File

@@ -20,40 +20,40 @@ textual borders
```sass ```sass
* { * {
rule: "ascii" /* A border with plus, hyphen, and vertical bar characters. */ rule: ascii /* A border with plus, hyphen, and vertical bar characters. */
rule: "blank" /* A blank border (reserves space for a border). */ rule: blank /* A blank border (reserves space for a border). */
rule: "dashed" /* Dashed line border. */ rule: dashed /* Dashed line border. */
rule: "double" /* Double lined border. */ rule: double /* Double lined border. */
rule: "heavy" /* Heavy border. */ rule: heavy /* Heavy border. */
rule: "hidden" /* Alias for "none". */ rule: hidden /* Alias for "none". */
rule: "hkey" /* Horizontal key-line border. */ rule: hkey /* Horizontal key-line border. */
rule: "inner" /* Thick solid border. */ rule: inner /* Thick solid border. */
rule: "none" /* Disabled border. */ rule: none /* Disabled border. */
rule: "outer" /* Solid border with additional space around content. */ rule: outer /* Solid border with additional space around content. */
rule: "round" /* Rounded corners. */ rule: round /* Rounded corners. */
rule: "solid" /* Solid border. */ rule: solid /* Solid border. */
rule: "tall" /* Solid border with additional space top and bottom. */ rule: tall /* Solid border with additional space top and bottom. */
rule: "vkey" /* Vertical key-line border. */ rule: vkey /* Vertical key-line border. */
rule: "wide" /* Solid border with additional space left and right. */ rule: wide /* Solid border with additional space left and right. */
} }
``` ```
### Python ### Python
```py ```py
border: "ascii" # A border with plus, hyphen, and vertical bar characters. border = "ascii" # A border with plus, hyphen, and vertical bar characters.
border: "blank" # A blank border (reserves space for a border). border = "blank" # A blank border (reserves space for a border).
border: "dashed" # Dashed line border. border = "dashed" # Dashed line border.
border: "double" # Double lined border. border = "double" # Double lined border.
border: "heavy" # Heavy border. border = "heavy" # Heavy border.
border: "hidden" # Alias for "none". border = "hidden" # Alias for "none".
border: "hkey" # Horizontal key-line border. border = "hkey" # Horizontal key-line border.
border: "inner" # Thick solid border. border = "inner" # Thick solid border.
border: "none" # Disabled border. border = "none" # Disabled border.
border: "outer" # Solid border with additional space around content. border = "outer" # Solid border with additional space around content.
border: "round" # Rounded corners. border = "round" # Rounded corners.
border: "solid" # Solid border. border = "solid" # Solid border.
border: "tall" # Solid border with extras space top and bottom. border = "tall" # Solid border with extras space top and bottom.
border: "vkey" # Vertical key-line border. border = "vkey" # Vertical key-line border.
border: "wide" # Solid border with additional space left and right. border = "wide" # Solid border with additional space left and right.
``` ```