From 4520e3a175052bdcbd1eac9bd670fb6da6038435 Mon Sep 17 00:00:00 2001 From: VladNegara <150728638+VladNegara@users.noreply.github.com> Date: Fri, 8 May 2026 10:51:45 +0200 Subject: [PATCH 1/2] Fix content and grammar in `quotes` property docs --- files/en-us/web/css/reference/properties/quotes/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/files/en-us/web/css/reference/properties/quotes/index.md b/files/en-us/web/css/reference/properties/quotes/index.md index 0b212ce17b17489..69e516815764b03 100644 --- a/files/en-us/web/css/reference/properties/quotes/index.md +++ b/files/en-us/web/css/reference/properties/quotes/index.md @@ -81,7 +81,7 @@ quotes: unset; Which pair of quotes is used depends on the depth, or nesting level, of quotes: the number of occurrences of `` quotes or `open-quote` (or `no-open-quote`) in all generated text before the current occurrence, minus the number of occurrences of closing quotes, either as ``, `close-quote`, or `no-close-quote`. If the depth is 0, the first pair is used, if the depth is 1, the second pair is used, etc. > [!NOTE] -> The CSS `content` property value `open-quote` increments and `no-close-quote` decrements the quoting level, but does not insert a quotation marks. +> The CSS `content` property value `no-open-quote` increments and `no-close-quote` decrements the quoting level, but they do not insert quotation marks. ## Formal definition @@ -95,7 +95,7 @@ quotes: unset; ### Default quotes and overrides -This examples compares the default quotes provided by the semantic HTML `` element to those we define using the CSS `quotes` property. +This example compares the default quotes provided by the semantic HTML `` element to those we define using the CSS `quotes` property. The default value of `quotes` is [`auto`](#auto). In this example, the first list item has `quotes: auto` set, so gets the default quotes for the language specified; the same as if no `quotes` property was set. The second list item defines which quotation marks to use for quotes and nested quotes; these quotation marks will be used for descendants of an element with `specialQuotes` class regardless of the language (like any [`lang`](/en-US/docs/Web/HTML/Reference/Global_attributes/lang) attribute values set). @@ -228,7 +228,7 @@ In this example, instead of using the `` element, we are adding quotation mar ### Text as quotes and empty quotes -This example demonstrates using something other than quotation marks as the `` values. The open-quote indicates the speaker and, as there is not opening quotation mark, the close-quote is the empty. (Mixing a `` with an enumerated keyword to create a pair is not supported). We set `auto` for the nested quotes. These nested quotes will be book-ended by whatever the language dictates is normal for nested quotes. +This example demonstrates using something other than quotation marks as the `` values. The open-quote indicates the speaker and, as there is no opening quotation mark, the close-quote is the empty. (Mixing a `` with an enumerated keyword to create a pair is not supported). We set `auto` for the nested quotes. These nested quotes will be book-ended by whatever the language dictates is normal for nested quotes. #### HTML From a154f4209324f541f0e92e39110b096d037eaa75 Mon Sep 17 00:00:00 2001 From: VladNegara <150728638+VladNegara@users.noreply.github.com> Date: Fri, 8 May 2026 10:58:38 +0200 Subject: [PATCH 2/2] Fix additional grammar mistake --- files/en-us/web/css/reference/properties/quotes/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/web/css/reference/properties/quotes/index.md b/files/en-us/web/css/reference/properties/quotes/index.md index 69e516815764b03..06efc094d7a3b1b 100644 --- a/files/en-us/web/css/reference/properties/quotes/index.md +++ b/files/en-us/web/css/reference/properties/quotes/index.md @@ -228,7 +228,7 @@ In this example, instead of using the `` element, we are adding quotation mar ### Text as quotes and empty quotes -This example demonstrates using something other than quotation marks as the `` values. The open-quote indicates the speaker and, as there is no opening quotation mark, the close-quote is the empty. (Mixing a `` with an enumerated keyword to create a pair is not supported). We set `auto` for the nested quotes. These nested quotes will be book-ended by whatever the language dictates is normal for nested quotes. +This example demonstrates using something other than quotation marks as the `` values. The open-quote indicates the speaker and, as there is no opening quotation mark, the close-quote is empty. (Mixing a `` with an enumerated keyword to create a pair is not supported). We set `auto` for the nested quotes. These nested quotes will be book-ended by whatever the language dictates is normal for nested quotes. #### HTML