From 1b80e2a4b0730858a613b4696bc4f80e1860e7ce Mon Sep 17 00:00:00 2001
From: Narendra Dhangar <161828345+narendra-dhangar@users.noreply.github.com>
Date: Fri, 3 Oct 2025 08:36:18 +0530
Subject: [PATCH] Update adjacent-sibling-selector.md
---
.../combinator-selectors/adjacent-sibling-selector.md | 3 +++
1 file changed, 3 insertions(+)
diff --git a/docs/css/selectors/combinator-selectors/adjacent-sibling-selector.md b/docs/css/selectors/combinator-selectors/adjacent-sibling-selector.md
index b41fd20..357a9e8 100644
--- a/docs/css/selectors/combinator-selectors/adjacent-sibling-selector.md
+++ b/docs/css/selectors/combinator-selectors/adjacent-sibling-selector.md
@@ -13,11 +13,13 @@ keywords:
css combinator,
css adjacent sibling combinator,
]
+hide_table_of_contents: true
---
In CSS, the adjacent sibling selector is used to select an element that is immediately preceded by another element. The adjacent sibling selector is represented by the `+` character between two selectors.
+
## Syntax
@@ -64,6 +66,7 @@ The adjacent sibling selector can be used to target specific elements that are a
:::
+
## Example: Using Adjacent Sibling Selector