We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ab25dc commit 1a6972eCopy full SHA for 1a6972e
README.md
@@ -175,7 +175,13 @@ Here's a complete list of available element modifiers:
175
| `prose-video:{utility}` | `video` |
176
| `prose-hr:{utility}` | `hr` |
177
178
-When stacking these modifiers with other modifiers like `hover`, you most likely want the other modifier to come first:
+When stacking these modifiers with other modifiers like `hover`, you most likely want the other modifier to come last:
179
+
180
+```html
181
+<article class="prose prose-a:text-blue-600 prose-a:hover:text-blue-500">{{ markdown }}</article>
182
+```
183
184
+If you are still using in Tailwind CSS v3, the modifier order is the opposite:
185
186
```html
187
<article class="prose prose-a:text-blue-600 hover:prose-a:text-blue-500">{{ markdown }}</article>
0 commit comments