css对悬停的特异性

时间:2012-07-25 19:40:48

标签: html css css-specificity

我有css特异性问题。

如果“没有账单”,我希望<td>样式的颜色不同,所以我用if语句设置样式。如果没有账单,则样式为style = "id=\"no-bills\"";。我得到了这个与CSS一起工作。现在,如果用户将鼠标悬停在它上面,我希望背景变为红色 - 所以我修改了css并添加了#bill-list #no-bills td:hover,其中td:hover会在您将鼠标悬停在其上时添加一些额外的特异性。不幸的是,这不起作用(背景保持不变)。

这是我的css:

#bill-list
{
    font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
    font-size: 12px;
    /*margin: 45px;*/
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}
#bill-list th
{
    font-size: 13px;
    font-weight: normal;
    padding: 8px;
    background: #b9c9fe;
    border-top: 4px solid #aabcfe;
    border-bottom: 1px solid #fff;
    color: #039;
}
#bill-list td
{
    padding: 8px;
    background: #e8edff; 
    border-bottom: 1px solid #fff;
    color: #669;
    border-top: 1px solid transparent;
}
#bill-list tr:hover td
{
    background: #d0dafd;
    color: #339;
}

#bill-list #bill td
{
    background: white;
}

#bill-list #no-bills
{
    background: #FFCC99;
}
#bill-list #no-bills td:hover
{
    color: orange;
    background: red /*#FFCC66*/;
}

这是我的代码(摘录):

<table id="bill-list">
<thead>
    <tr>
        <% for (int i=0; i<vecHeader.size(); i++) { %>
            <th><%=vecHeader.get(i) %></th>
        <% } %>
    </tr>
</thead>

<tbody>
    <%  int uniqueId = 0;
        for (int i=0; i < vecValue.size(); i++) { 
        boolean hasBills = true;
        String style = "";
        if ( vecBills.get(i) == null || vecBills.get(i).size() == 0 ) {
            hasBills = false;
            style = "id=\"no-bills\"";
        }
        %>
        <tr id="bill<%=i%>" onclick="javascript:showBillDetails(<%=i%>)">
            <% for (int j=0; j < vecHeader.size(); j++) {
                prop = (Properties)vecValue.get(i);
                %>
                <td <%=style%>><%=prop.getProperty((String)vecHeader.get(j), "&nbsp;") %>&nbsp;</td>
            <% } %>
        </tr>
...
...

有人有什么想法吗?

2 个答案:

答案 0 :(得分:3)

你应该发布HTML代码,而不是生成它的代码,这里不相关。

第一个问题:您确定同一页面上不能有2 no-bills个ID吗?

然后你的问题:你正在尝试设置td:hover的后代#no-bills。后者是相同的td,而不是方兴未艾!然后,您应该设置#bill-list #no-bills:hover样式,这似乎是td正在悬停。

答案 1 :(得分:1)

尝试

#bill-list #no-bills:hover

而不是

#bill-list #no-bills td:hover

如果有多个无账单,您应该使用class over id。