@@ -47,9 +47,8 @@ element
4747```
4848///
4949
50- /// tip | Additional Reading
51- https://developer.mozilla .org/en-US/docs/Web/CSS/Type_selectors
52- ///
50+ > [!tip ] Additional Reading
51+ > https://developer.mozilla .org/en-US/docs/Web/CSS/Type_selectors
5352
5453## Universal Selectors
5554
@@ -90,9 +89,8 @@ The Universal selector (`*`) matches elements of any type.
9089```
9190///
9291
93- /// tip | Additional Reading
94- https://developer.mozilla .org/en-US/docs/Web/CSS/Universal_selectors
95- ///
92+ > [!tip ] Additional Reading
93+ > https://developer.mozilla .org/en-US/docs/Web/CSS/Universal_selectors
9694
9795## ID Selectors
9896
@@ -122,14 +120,12 @@ The ID selector matches an element based on its `id` attribute. The ID must matc
122120```
123121///
124122
125- /// tip | Additional Reading
126- https://developer.mozilla .org/en-US/docs/Web/CSS/ID_selectors
127- ///
123+ > [!tip ] Additional Reading
124+ > https://developer.mozilla .org/en-US/docs/Web/CSS/ID_selectors
128125
129- /// note | XML Support
130- While the use of the `id` attribute (in the context of CSS) is a very HTML centric idea, it is supported for XML as
131- well because Beautiful Soup supported it before Soup Sieve's existence.
132- ///
126+ > [!note ] XML Support
127+ > While the use of the `id` attribute (in the context of CSS) is a very HTML centric idea, it is supported for XML as
128+ > well because Beautiful Soup supported it before Soup Sieve's existence.
133129
134130## Class Selectors
135131
@@ -160,23 +156,20 @@ treated as a whitespace separated list, where each item is a **class**.
160156```
161157///
162158
163- /// tip | Additional Reading
164- https://developer.mozilla .org/en-US/docs/Web/CSS/Class_selectors
165- ///
159+ > [!tip ] Additional Reading
160+ > https://developer.mozilla .org/en-US/docs/Web/CSS/Class_selectors
166161
167- /// note | XML Support
168- While the use of the `class` attribute (in the context of CSS) is a very HTML centric idea, it is supported for XML
169- as well because Beautiful Soup supported it before Soup Sieve's existence.
170- ///
162+ > [!note ] XML Support
163+ > While the use of the `class` attribute (in the context of CSS) is a very HTML centric idea, it is supported for XML
164+ > as well because Beautiful Soup supported it before Soup Sieve's existence.
171165
172166## Attribute Selectors
173167
174168The attribute selector matches an element based on its attributes. When specifying a value of an attribute, if it
175169contains whitespace or special characters, you should quote them with either single or double quotes.
176170
177- /// tip | Additional Reading
178- https://developer.mozilla .org/en-US/docs/Web/CSS/Attribute_selectors
179- ///
171+ > [!tip ] Additional Reading
172+ > https://developer.mozilla .org/en-US/docs/Web/CSS/Attribute_selectors
180173
181174/// define |
182175`[attribute ]`
0 commit comments