gpt4 book ai didi

css - 复杂的 CSS 选择器

转载 作者:太空宇宙 更新时间:2023-11-04 15:30:40 25 4
gpt4 key购买 nike

我有一个噩梦般的 CMS 可以使用 - 它只吐出表中表等表中的表,一些嵌套,一些兄弟。没有 classes 或 id,所以我试图在剩下的唯一方式中进行选择。

当鼠标悬停在 Firebug 中的 HTML 上时,它会显示如下(简化版):

html/body/div/div[3]/table[3]

我试过这个 CSS 选择器来复制它:

html body div div:nth-child[3]

但是它不起作用;它在 :nth-child 选择器处分解。如何编写 CSS 选择器来访问上述元素?

最佳答案

这里:

body > div > div:nth-child(3) > table:nth-child(3)

但这是 CSS 选择器所能达到的最低效率。您确定您的 CMS 没有给您任何 ID 或类别吗?

关于css - 复杂的 CSS 选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13421826/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com