From 07973325317ad147d280e837e157129936d33376 Mon Sep 17 00:00:00 2001 From: Ben Keith <1754187+benlk@users.noreply.github.com> Date: Sat, 2 Dec 2023 04:10:38 -0500 Subject: [PATCH] Add word "tilde" to subsequent-sibling combinator page (#30723) * Add word "tilde" to subsequent-sibling combinator page Adding the word "tilde" to this page makes it possible to find this page by searching for the name of the character used for the selector. * Update files/en-us/web/css/subsequent-sibling_combinator/index.md --------- Co-authored-by: Jean-Yves Perrier --- files/en-us/web/css/subsequent-sibling_combinator/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/web/css/subsequent-sibling_combinator/index.md b/files/en-us/web/css/subsequent-sibling_combinator/index.md index edef371b29226d4..6f593f4fe1db8f9 100644 --- a/files/en-us/web/css/subsequent-sibling_combinator/index.md +++ b/files/en-us/web/css/subsequent-sibling_combinator/index.md @@ -7,7 +7,7 @@ browser-compat: css.selectors.subsequent-sibling {{CSSRef("Selectors")}} -The **subsequent-sibling combinator** (`~`) separates two selectors and matches _all instances_ of the second element that follow the first element (not necessarily immediately) and share the same parent element. +The **subsequent-sibling combinator** (`~`, a tilde) separates two selectors and matches _all instances_ of the second element that follow the first element (not necessarily immediately) and share the same parent element. In the following example, the subsequent-sibling combinator (`~`) helps to select and style paragraphs that are both siblings of an image and appear after any image.