选项卡中的 CSS - 最后 TR TD
<table id="tab">
<tr> <td>11</td> <td>22</td> </tr>
<tr> <td>33</td> <td>44</td> </tr>
<tr> <td>55</td> <td>66</td> </tr>
</table>
#tab td {
border: solid 2px red;
padding: 10px;
}
#tab td {
background-color: green;
}
我希望只有在最后的 TR TD 中才是绿色 - 55 和 66。 11、22、33、44 的 TD 必须是白色。
我使用 PHP 生成此表 - 我必须仅使用 CSS 或 jQuery。
#tab td:last {
background-color: green;
}
不起作用。
<table id="tab">
<tr> <td>11</td> <td>22</td> </tr>
<tr> <td>33</td> <td>44</td> </tr>
<tr> <td>55</td> <td>66</td> </tr>
</table>
#tab td {
border: solid 2px red;
padding: 10px;
}
#tab td {
background-color: green;
}
I would like that only in last TR TD was GREEN - 55 and 66. TD with 11, 22, 33, 44 must be white.
I generate this table with PHP - I must use only CSS or jQuery.
#tab td:last {
background-color: green;
}
doesn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
符合标准的解决方案是:
但是 IE6-8 不支持它。对于它们,您可以使用 jQuery 片段:
The standard-compliant solution for that is:
However it isn't supported in IE6-8. Fot them you can use jQuery snippet:
我相信您想使用
:last-child
伪类。您可能希望将其应用于 tr 而不是 td。这是一个小提琴http://jsfiddle.net/Rx2De/1/
I believe you want to use the
:last-child
pseudo class. And you would want to apply that on the tr not the td.here is a fiddle http://jsfiddle.net/Rx2De/1/
这样写,
但在 IE 中不起作用
,或者你这样写:
检查这个 http://jsfiddle.net /sandeep/Rx2De/7/
它也适用于 IE
write like this
but is not work in IE
or you write like this:
check this http://jsfiddle.net/sandeep/Rx2De/7/
it's work on IE also