为什么在IE8中没有显示tablesorter图像?

时间:2013-12-24 07:10:02

标签: javascript html css

我正在使用表格分类器功能和css如下所示。下面的CSS在ie9中工作,但图像没有显示在IE8中。你可以帮助我解决这个问题吗?

table.tablesorter tbody td.result,  table.tablesorter tbody tr.result{
     background: #A4D3EE;
  }

table.tablesorter {
    font-family:arial;
    color: rgb(51, 51, 51);
    margin:10px 0pt 15px;
    font-size: 10pt;
    width: 100%;
    text-align: left;
 }
table.tablesorter thead tr th, table.tablesorter tfoot tr th {
    background-color: #8dbdd8;
    border: 1px solid #FFF;
    font-size: 10pt;
    padding: 5px;
}
table.tablesorter thead tr .header:not(.nosort) {
    background-image: url('/sorter/bg.gif');  
    background-repeat: no-repeat;
    background-position: center right;
    cursor: pointer;
}
table.tablesorter tbody td {
        background-color: rgb(239, 243, 251);
        padding: 5px;
        border: solid 1px #e8eef4;

    vertical-align: top;
}
table.tablesorter tbody tr.odd td {
    background-color:#F0F0F6;
}
table.tablesorter thead tr .headerSortUp:not(.nosort) {
    background-image: url('/sorter/asc.gif'); 
}
table.tablesorter thead tr .headerSortDown:not(.nosort) {
    background-image: url('/sorter/desc.gif'); 
}
table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
background-color: #8dbdd8;
}

请告诉我为什么IE8.asc中没有加载图片,desc图片正在其他浏览器中加载。但ie8没有显示。

0 个答案:

没有答案
相关问题