表中的border-radius的JQuery slimScroll在IE 8中不起作用

时间:2013-05-15 03:48:17

标签: jquery css3 internet-explorer-8 slimscroll

我正在使用JQuery slimScroll插件在div中制作自定义滚动条。在那个div里面我有一个表,我想让表格的第一个和最后一个四舍五入,它与IE 8以外的其他浏览器一起工作正常。在IE 8中滚动时,第一个和最后一个移动速度稍慢。

我也附上了这张照片。 enter image description here

这是表格:

<table>
    <c:forEach var="lists" items="${viewGroupListByUser}" varStatus="status">
    <tr style="position: relative;">
        <td ><img alt="" src="../images/group/group.jpg" style="margin-left: 10px;"></td>
        <td id="gn_${lists.groupID}" width="245px" style="padding-left: 10px !important;">${lists.groupName}</td>
        <td id="gd_${lists.groupID}"  width="190px">${lists.groupDetail}</td>
        <td width="120px"><a href="viewGroupPage?groupID=${lists.groupID}&groupName=${lists.groupName}" class="link_button">View</a></td>
        <td width="120px"><a href="#" onclick="showEditGroup(this)" id="${lists.groupID}" class="link_button">Edit</a></td>
        <td width="120px" class='last-child' style="position: relative;"><a href="deleteGroup/${lists.groupID}" class="link_button">Delete</a></td>
    </tr>
    </c:forEach>
</table>

这是css:

.group_manage_list_main{
    margin-left: 89px;
    margin-top: 10px;
    overflow-y: auto;
    width: 860px;
    height: 450px;
    position: relative;
}
.group_manage_list_main table{
    border-collapse: separate;
    width: 830px;
    border-spacing: 0 15px;
    margin-top: -14px;
    position: relative;
}
.last-child { 
    border-radius: 0 10px 10px 0;
    border:1px solid #FFFFFF;
    background: #FFFFFF;
    position: relative;
    behavior: url("../css/PIEFiles/PIE.htc");
}

请有人帮助我,我被困在这里2天。感谢名单

1 个答案:

答案 0 :(得分:1)

那是因为css3属性在IE8中没有支持

Here's the w3schools reference

Mozilla Developer reference

<强> “UPDATE”

您正在使用Css3选择器,并且在IE8中也没有使用jquery的支持,您可以使用像

这样的选择器
$(".group_manage_list_main td:last") //not tested

Last child w3 school doc