4

我有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>
...
...

有人有想法么?

4

2 回答 2

4

您应该发布 HTML 代码,而不是生成它的代码,这在这里无关紧要。

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

然后是您的问题:您正在尝试将样式td:hover设置为#no-bills. 后者是同一个td,不是一个升天!然后你应该 style #bill-list #no-bills:hover,这似乎是一个td被悬停的。

于 2012-07-25T19:46:08.243 回答
1

尝试

#bill-list #no-bills:hover

代替

#bill-list #no-bills td:hover

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

于 2012-07-25T20:00:02.477 回答