- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我的 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/
嗨,我最近使用 bootstrap 4 offcanvas 模板来构建我的网站 http://v4-alpha.getbootstrap.com/examples/offcanvas/# 现在我想让我
我有 2 个侧边栏 - 左侧和右侧。我希望左侧边栏始终可见,并编写此内容以在加载时打开它: $(document).on('pagebeforeshow', function(){ $("#l
我是一名优秀的程序员,十分优秀!