为什么这在IE8中不起作用?
table.points > tbody > tr > td {
padding:8px 0px 8px 0px;
}
table.points > tbody > tr > td:last-child > div {
border:1px solid #a5bcd0;
border-left:3px solid #a5bcd0;
border-right:0px;
padding:5px 6px 6px 10px;
background:#fcfeff;
}
<table class="points">
<tr>
<td>test</td>
<td><div>hey</div></td>
</tr>
</table>
答案 0 :(得分:1)
IE8及以下版本不支持:last-child http://www.quirksmode.org/css/contents.html#t35
这似乎做你想要的 http://jsfiddle.net/QqMjL/3/