From 036c3e8651a4d49dc1ec7bd16eb05dfedc53c6ea 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: Thu, 12 Jan 2023 14:42:04 +0000 Subject: [PATCH] Update documentation. --- docs/css_types/text_style.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/css_types/text_style.md b/docs/css_types/text_style.md index f41646e3c..40afea528 100644 --- a/docs/css_types/text_style.md +++ b/docs/css_types/text_style.md @@ -8,13 +8,13 @@ The `` CSS type represents styles that can be applied to text. ## Syntax -A [``](/css_types/text_style) can be any _space-separated_ combination of the following values: +A [``](/css_types/text_style) can be the value `none` for plain text with no styling, +or any _space-separated_ combination of the following values: | Value | Description | |-------------|-----------------------------------------------------------------| | `bold` | **Bold text.** | | `italic` | _Italic text._ | -| `none` | Plain text with no styling. | | `reverse` | Reverse video text (foreground and background colors reversed). | | `strike` | Strikethrough text. | | `underline` | Underline text. | @@ -42,5 +42,5 @@ A [``](/css_types/text_style) can be any _space-separated_ combinati widget.styles.text_style = "strike" # You can also combine multiple values -widget.styles.text_style = "bold underline italic" +widget.styles.text_style = "strike bold italic reverse ```