我有以下html:

<span wicket:id="votevaluenotifier">
<label name="currentVoteValue" id="currentVoteValue" wicket:id="currentVoteValue" />%
</span>


我正在尝试使用以下方式在CSS中设置结果的样式:

.currentVoteValue
{color:#CC3300;
}


但没有喜悦。我知道我缺少明显的东西,但是呢?我尝试使用表决值通知程序代替currentVoteValue但没有骰子。

抱歉-我是CSS新手。

最佳答案

我不知道检票口,但是如果您有

<label id="currentVoteValue">


您应该使用以下样式

#currentVoteValue {
    color:#CC3300;
}


因为#ID selector开头,而.class selector

07-28 12:25