请问如何通过 css 选择器选择 body 下的第 2 个 table ?
<body> <div></div> <table></table> <table></table> </body
body > table:nth-of-type(2) { display: table-row; }