html – 需要使用CSS选择器选择第二个表的第二行

前端之家收集整理的这篇文章主要介绍了html – 需要使用CSS选择器选择第二个表的第二行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个 HTML表格如下:
<table class="reference notranslate">
  <tr>..</tr>
     .
     .
  <tr>..</tr>
</table>
<table class="reference notranslate">
  <tr>..</tr>
     .
     .
  <tr>..</tr>
</table>
<table class="reference notranslate">
  <tr>..</tr>
     .
     .
  <tr>..</tr>
</table>

我知道XPATH://表[@class =’reference notranslate’] [2] / tr [2]

我想选择第二个表的第二行.任何人都可以帮助如何编写CSS选择器吗?

解决方法

“I know the XPATH : //table[@class = 'reference notranslate'][2]/tr[2]

I want to select second table’s second row. Can any one help how to
write the CSS selectors from the same?”

所以,你的意思是:

table.reference.notranslate:nth-child(2) tr:nth-child(2)

这将选择第二个表的第二个后代tr元素,它具有两个类(引用和非转换).

jsFiddle here.

原文链接:https://www.f2er.com/html/228030.html

猜你在找的HTML相关文章