Skip to content

Commit 62f3097

Browse files
Fix Docs issue
1 parent 9f8b8dd commit 62f3097

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

docs/css/selectors/combinator-selectors/descendant-selector.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@ sidebar_position: 1
66
tags: [selector, combinator, descendant]
77
description: "Descendant selector is used to select an element that is a descendant of another element."
88
keywords: [descendant selector, css descendant selector, css selector, css combinator, css descendant combinator]
9+
hide_table_of_contents: true
910
---
1011

1112
In CSS, the descendant selector is used to select an element that is a descendant of another element. The descendant selector is represented by a whitespace character (` `) between two selectors.
1213

1314
<AdsComponent />
15+
<br />
1416

1517
## Syntax
1618

@@ -57,6 +59,7 @@ The descendant selector can be used to select multiple levels of descendants. Fo
5759
:::
5860

5961
<AdsComponent />
62+
<br />
6063

6164
## Example: Using Descendant Selector
6265

@@ -159,4 +162,4 @@ In the above example, the CSS rule will apply the color `blue` to the text insid
159162
- [Adjacent Sibling Selector](#): The adjacent sibling selector selects an element that is immediately preceded by a specified element.
160163
- [General Sibling Selector](#): The general sibling selector selects an element that is preceded by a specified element.
161164
- [Attribute Selector](#): The attribute selector selects elements based on their attributes.
162-
- [Pseudo-Class Selector](#): The pseudo-class selector selects elements based on their state or position.
165+
- [Pseudo-Class Selector](#): The pseudo-class selector selects elements based on their state or position.

0 commit comments

Comments
 (0)