1
ashong 2 天前
打开 devtools 看看这个样式加载了吗?
|
2
dazkarieh 2 天前
|
3
Allenwang2023 OP @dazkarieh 这个我试了下,是可以的。👍
|
4
Allenwang2023 OP @ashong #1 这段没有,但是 CSS 里边的其他代码加载了,比如给图片加个圆角可以实现。😅
|
5
ashong 2 天前
强制所有锚点使用该样式
* a:visited { color: red !important; } |
6
Allenwang2023 OP @ashong #5 刚测试了一下,不起作用。😂
|
7
iv8d 1 天前 1
刚试过
### a:visited { color: red !important; } ### 没问题,看看 F12 里样式生效没 |
8
shintendo 1 天前
找个有链接的页面,Ctrl+Shift+C ,选中一个链接(<a>标签),看右侧 styles 栏里面,有没有“color: red !important”这一条,如果有这一条但是被划掉了,那就是被优先级更高的覆盖了,再看有哪一条 color 是没被划掉的
|
9
Allenwang2023 OP @iv8d #7 你用的什么浏览器试的,chrome131 (包括)一下都可以,我用的 dev133 和 132 都不行,不知道是不是版本问题还是 bug😂
|
10
Allenwang2023 OP @shintendo #8 没有这一条😂
|
11
wuyiw 20 小时 33 分钟前
@Allenwang2023 #9 你去扩展页面看看 stylus 是不是被停用了
|
12
iv8d 15 小时 58 分钟前
@Allenwang2023 chrome 129.0.6668.101
|
13
realpg 13 小时 12 分钟前
@Allenwang2023 #9
没事儿为啥非得装 dev 的 |
14
mostkia 7 小时 45 分钟前
!important;规则并不一定是最高优先级的,如果其他未知的规则本身就优先级高且也使用了!important;那这条规则还是会优先覆盖掉你的自定义效果,最好的方法就是开发者模式看看,是否被覆盖掉了
|