如何使用css定位每个其他iframe?

时间:2011-10-02 22:16:51

标签: css css-selectors

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

enter image description here

我可以使用nth-child吗?也许类似下面的代码(虽然这不起作用)?

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

1 个答案:

答案 0 :(得分:6)

使用这种精确的HTML结构,您需要这个选择器:

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

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