Doc: link works

This commit is contained in:
alstjr7375 2022-04-09 18:13:59 +09:00
parent a6cb7a0d65
commit a26e9dae02
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@
- [Basics](#basics)
- [Default Config](#default-config)
- [User Config](#user-config)
* [about:config](#about-config)
* [about:config](#aboutconfig)
* [prefs.js](#prefsjs)
* [user.js](#userjs)
- [Auto Config](#auto-config)

View file

@ -52,7 +52,7 @@ User CSS(`userChrome.css`, `userContent.css`) is usually loaded first.
In many cases, overriding should be prevented with [`important!`](https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity#the_!important_exception)(Anti-pattern in general web), and side effects should also be considered.
### DOM structure cannot be modified
It is possible with [JS(Autoconfig)](./Prefence.md#auto-config), but there are security and configuration issues, so we should make the most of CSS.
It is possible with [JS(Autoconfig)](./Preference.md#auto-config), but there are security and configuration issues, so we should make the most of CSS.
[`::before`](https://developer.mozilla.org/en-US/docs/Web/CSS/::before) and [`::after`](https://developer.mozilla.org/en-US/docs/Web/CSS/::after) can indirectly add CSS elements.