私の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 は機能しません。これには理由がありますか?修正するにはどうすればよいですか?