2

我应该在我的 style.css 中放入什么 CSS 代码,以便菜单字体在处于选定状态时变为黑色和粗体。

<li class="selected"><a href="/health-coaching.html">Health Coaching</a></li>

帮助!谢谢

4

3 回答 3

2

你可以使用这个:

.selected a:active
{
    color: black;
    font-weight: bold;
}

要在悬停时应用相同的设置,请使用以下命令:

.selected a:hover
    {
        color: black;
        font-weight: bold;
    }
于 2013-06-22T04:47:16.577 回答
1

尝试:

.selected a {
    color: #000;
    font-weight: bold;
}
于 2013-06-22T04:39:44.220 回答
0

用这个

li.selected a {
  font-weight: bold;
  color: #000;
}
于 2013-06-22T04:54:56.447 回答