如何使用 css 定位所有其他 iframe?

发布于 2024-12-07 10:25:35 字数 203 浏览 0 评论 0原文

我正在尝试定位下面屏幕截图中的所有其他 iframe。

在此处输入图像描述

我可以为此使用 nth-child 吗?也许类似于下面的代码(尽管这不起作用)?

#main iframe:nth-child(2n+2)

I am trying to target every other iframe in the screenshot below.

enter image description here

Can I use nth-child for this? Maybe something like the code below (although this doesn't work)?

#main iframe:nth-child(2n+2)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

遥远的绿洲 2024-12-14 10:25:35

有了确切的 HTML 结构,您就需要这个选择器:

#main iframe:nth-child(4n+2)

如果您希望从第一个 iframe 而不是第二个开始,请删除 +2

With that exact HTML structure, you need this selector:

#main iframe:nth-child(4n+2)

If you'd prefer to start from the first iframe instead of the second, remove the +2.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文