我仍在尝试弄清楚如何正确使用我nth
的first
, 和last
child 选择器。谢谢你的耐心。
如果我的标记是这样的:
<div class="the-wrapper">
<table class="the-table">
<!-- the table -->
</table>
<table class="the-table">
<!-- the table -->
</table>
</div>
如何选择最后一个<table class="the-table">
应用保证金?
我以为我可以像这样选择它:.the-wrapper .the-table:last-child { /* css */ }
但这不起作用。我错过了什么?谢谢!
编辑
对不起大家我错误地打印了我的标记......正确的标记在上面