gpt4 book ai didi

css - 为什么不会是 :active work in sidebar widget?

转载 作者:太空宇宙 更新时间:2023-11-04 14:49:46 25 4
gpt4 key购买 nike

我的 CSS 中有以下内容:

.categories-widget li a:hover {
text-decoration: underline;
}

.categories-widget li a:active {
text-decoration: underline;
}

这在我的 sidebar.php 中:

<h2 class="big">Categories</h2>
<ul class="categories-widget">
<?php
global $parent_id;
wp_list_categories('show_count=1&title_li=&child_of='.$gateway_parent_id.'&show_count=0&hide_empty=0'); ?>
</ul>

a:hover 有效,但 a:active 无效。是否有一个原因?我该怎么做才能修复它?

最佳答案

它不会工作,因为你有:

.categories-widget li a:hover {
text-decoration: underline;
}

.categories-widget li a:active {
text-decoration: underline;
}

:active 伪选择器将在鼠标光标当前按下元素时匹配。 so it is doing the same thing..

尝试:

.categories-widget li a:hover { 文本修饰:下划线;

.categories-widget li a:active {
position:fixed;
padding-top:1px;
color:red;
}

关于css - 为什么不会是 :active work in sidebar widget?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17517024/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com